(c: Block | SafeExpr)
| 542 | |
| 543 | // appends passed SafeExpr to code or executes Block |
| 544 | code(c: Block | SafeExpr): CodeGen { |
| 545 | if (typeof c == "function") c() |
| 546 | else if (c !== nil) this._leafNode(new AnyCode(c)) |
| 547 | return this |
| 548 | } |
| 549 | |
| 550 | // returns code for object literal for the passed argument list of key-value pairs |
| 551 | object(...keyValues: [Name | string, SafeExpr | string][]): _Code { |