ifc-expressions
Version:
Parsing and evaluation of IFC expressions
16 lines (15 loc) • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AndExpr = void 0;
const BinaryBooleanOpExpr_js_1 = require("./BinaryBooleanOpExpr.js");
const ExprKind_js_1 = require("../ExprKind.js");
class AndExpr extends BinaryBooleanOpExpr_js_1.BinaryBooleanOpExpr {
constructor(left, right) {
super(ExprKind_js_1.ExprKind.AND, "and", left, right);
}
buildExprString(builder) {
builder.appendExpr(this.left).appendString(" && ").appendExpr(this.right);
}
}
exports.AndExpr = AndExpr;
//# sourceMappingURL=AndExpr.js.map