UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

14 lines (13 loc) 320 B
export class ExprWalker { constructor(visitor) { this.visitor = visitor; } walk(expr) { this.visitor.enterExpr(expr); for (const child of expr.getChildren()) { this.walk(child); } this.visitor.exitExpr(expr); } } //# sourceMappingURL=ExprWalker.js.map