UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

17 lines (16 loc) 641 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NopContext = void 0; class NopContext { resolveElemRef() { throw new Error("No IfcExpressionContext implementation provided - cannot resolve element reference"); } resolvePropRef() { throw new Error("No IfcExpressionContext implementation provided - cannot resolve property reference"); } resolveBuiltinVariable(name) { throw new Error(`No IfcExpressionContext implementation provided - cannot resolve builtin variable '${name}'`); } } exports.NopContext = NopContext; //# sourceMappingURL=NopContext.js.map