ifc-expressions
Version:
Parsing and evaluation of IFC expressions
13 lines (12 loc) • 651 B
TypeScript
import { LiteralExpr } from "../LiteralExpr.js";
import { BooleanValue } from "../../value/BooleanValue.js";
import { ExprEvalError } from "../ExprEvalResult.js";
import { IfcExpressionContext } from "../../context/IfcExpressionContext.js";
import { ExprType } from "../../type/ExprType.js";
import { ExprStringBuilder } from "../ExprStringBuilder.js";
export declare class BooleanLiteralExpr extends LiteralExpr<boolean, BooleanValue> {
constructor(value: boolean);
protected calculateResult(ctx: IfcExpressionContext): ExprEvalError | BooleanValue;
protected buildExprString(builder: ExprStringBuilder): void;
getType(): ExprType;
}