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