azurite
Version:
An open source Azure Storage API compatible server
20 lines • 446 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class ConstantNode {
constructor(value) {
this.value = value;
}
get name() {
return "constant";
}
evaluate(_context) {
return [{
value: this.value
}];
}
toString() {
return JSON.stringify(this.value);
}
}
exports.default = ConstantNode;
//# sourceMappingURL=ConstantNode.js.map
;