UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

12 lines (11 loc) 402 B
import { BinaryBooleanOpExpr } from "./BinaryBooleanOpExpr.js"; import { ExprKind } from "../ExprKind.js"; export class AndExpr extends BinaryBooleanOpExpr { constructor(left, right) { super(ExprKind.AND, "and", left, right); } buildExprString(builder) { builder.appendExpr(this.left).appendString(" && ").appendExpr(this.right); } } //# sourceMappingURL=AndExpr.js.map