@sequeljs/ast
Version:
A SQL AST manager for JavaScript
12 lines • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const NodeExpression_1 = require("./NodeExpression");
class Binary extends NodeExpression_1.default {
constructor(left, right) {
super();
this.left = left;
this.right = right;
}
}
exports.default = Binary;
//# sourceMappingURL=Binary.js.map