azurite
Version:
An open source Azure Storage API compatible server
18 lines • 432 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ExpressionNode {
constructor(child) {
this.child = child;
}
get name() {
return "expression";
}
evaluate(context) {
return this.child.evaluate(context);
}
toString() {
return `(${this.child.toString()})`;
}
}
exports.default = ExpressionNode;
//# sourceMappingURL=ExpressionNode.js.map