xpath-ts2
Version:
DOM 3 and 4 XPath 1.0 implementation for browser and Node.js environment with support for typescript 5.
15 lines • 423 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.BinaryOperation = void 0;
const xpath_types_1 = require("../xpath-types");
class BinaryOperation extends xpath_types_1.Expression {
lhs;
rhs;
constructor(lhs, rhs) {
super();
this.lhs = lhs;
this.rhs = rhs;
}
}
exports.BinaryOperation = BinaryOperation;
//# sourceMappingURL=binary-operation.js.map
;