UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

8 lines 226 B
import Unary from './Unary'; export default class UnaryOperation extends Unary { constructor(operator, operand) { super(operand); this.operator = operator; } } //# sourceMappingURL=UnaryOperation.js.map