@sequeljs/ast
Version:
A SQL AST manager for JavaScript
11 lines • 339 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Unary_1 = require("./Unary");
class UnaryOperation extends Unary_1.default {
constructor(operator, operand) {
super(operand);
this.operator = operator;
}
}
exports.default = UnaryOperation;
//# sourceMappingURL=UnaryOperation.js.map