(type)
| 146368 | return canonicalType(type) === "operator"; |
| 146369 | } |
| 146370 | function isCollect(type) { |
| 146371 | return canonicalType(type) === "collect"; |
| 146372 | } |
| 146373 | function expression(ctx, args, code) { |
| 146374 | // wrap code in return statement if expression does not terminate |
| 146375 | if (code[code.length - 1] !== ";") code = "return(" + code + ");"; |