azurite
Version:
An open source Azure Storage API compatible server
13 lines • 386 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class BinaryOperatorNode {
constructor(left, right) {
this.left = left;
this.right = right;
}
toString() {
return `(${this.left.toString()} ${this.name} ${this.right.toString()})`;
}
}
exports.default = BinaryOperatorNode;
//# sourceMappingURL=BinaryOperatorNode.js.map
;