(c)
| 1142 | } |
| 1143 | // appends passed SafeExpr to code or executes Block |
| 1144 | code(c) { |
| 1145 | if (typeof c == "function") |
| 1146 | c(); |
| 1147 | else if (c !== code_1.nil) |
| 1148 | this._leafNode(new AnyCode(c)); |
| 1149 | return this; |
| 1150 | } |
| 1151 | // returns code for object literal for the passed argument list of key-value pairs |
| 1152 | object(...keyValues) { |
| 1153 | const code = ["{"]; |
no test coverage detected