ifc-expressions
Version:
Parsing and evaluation of IFC expressions
42 lines (41 loc) • 5.92 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.E = exports.Types = exports.TypeDisjunction = exports.TupleType = exports.SimpleType = exports.ArrayType = exports.ExprFacade = exports.ExprToTextInputLinker = exports.isExprEvalSuccess = exports.isExprEvalError = exports.isNullish = exports.isPresent = exports.IfcExpressionVisitor = exports.IfcExpressionErrorListener = exports.IfcExpressionEvaluationException = exports.ExprKind = exports.ExprCompiler = exports.NamedObjectAccessor = exports.IfcTypeObjectAccessor = exports.IfcRootObjectAccessor = exports.IfcPropertyAccessor = exports.IfcPropertySetAccessor = exports.IfcTimeStampValue = exports.IfcDurationValue = exports.IfcTimeValue = exports.IfcDateTimeValue = exports.IfcDateValue = exports.ReferenceValue = exports.NumericValue = exports.LogicalValue = exports.BooleanValue = exports.StringValue = exports.IfcElementAccessor = exports.IfcExpressionParseResult = exports.IfcExpression = void 0;
var IfcExpression_js_1 = require("./IfcExpression.js");
Object.defineProperty(exports, "IfcExpression", { enumerable: true, get: function () { return IfcExpression_js_1.IfcExpression; } });
Object.defineProperty(exports, "IfcExpressionParseResult", { enumerable: true, get: function () { return IfcExpression_js_1.IfcExpressionParseResult; } });
Object.defineProperty(exports, "IfcElementAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcElementAccessor; } });
Object.defineProperty(exports, "StringValue", { enumerable: true, get: function () { return IfcExpression_js_1.StringValue; } });
Object.defineProperty(exports, "BooleanValue", { enumerable: true, get: function () { return IfcExpression_js_1.BooleanValue; } });
Object.defineProperty(exports, "LogicalValue", { enumerable: true, get: function () { return IfcExpression_js_1.LogicalValue; } });
Object.defineProperty(exports, "NumericValue", { enumerable: true, get: function () { return IfcExpression_js_1.NumericValue; } });
Object.defineProperty(exports, "ReferenceValue", { enumerable: true, get: function () { return IfcExpression_js_1.ReferenceValue; } });
Object.defineProperty(exports, "IfcDateValue", { enumerable: true, get: function () { return IfcExpression_js_1.IfcDateValue; } });
Object.defineProperty(exports, "IfcDateTimeValue", { enumerable: true, get: function () { return IfcExpression_js_1.IfcDateTimeValue; } });
Object.defineProperty(exports, "IfcTimeValue", { enumerable: true, get: function () { return IfcExpression_js_1.IfcTimeValue; } });
Object.defineProperty(exports, "IfcDurationValue", { enumerable: true, get: function () { return IfcExpression_js_1.IfcDurationValue; } });
Object.defineProperty(exports, "IfcTimeStampValue", { enumerable: true, get: function () { return IfcExpression_js_1.IfcTimeStampValue; } });
Object.defineProperty(exports, "IfcPropertySetAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcPropertySetAccessor; } });
Object.defineProperty(exports, "IfcPropertyAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcPropertyAccessor; } });
Object.defineProperty(exports, "IfcRootObjectAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcRootObjectAccessor; } });
Object.defineProperty(exports, "IfcTypeObjectAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcTypeObjectAccessor; } });
Object.defineProperty(exports, "NamedObjectAccessor", { enumerable: true, get: function () { return IfcExpression_js_1.NamedObjectAccessor; } });
Object.defineProperty(exports, "ExprCompiler", { enumerable: true, get: function () { return IfcExpression_js_1.ExprCompiler; } });
Object.defineProperty(exports, "ExprKind", { enumerable: true, get: function () { return IfcExpression_js_1.ExprKind; } });
Object.defineProperty(exports, "IfcExpressionEvaluationException", { enumerable: true, get: function () { return IfcExpression_js_1.IfcExpressionEvaluationException; } });
Object.defineProperty(exports, "IfcExpressionErrorListener", { enumerable: true, get: function () { return IfcExpression_js_1.IfcExpressionErrorListener; } });
Object.defineProperty(exports, "IfcExpressionVisitor", { enumerable: true, get: function () { return IfcExpression_js_1.IfcExpressionVisitor; } });
Object.defineProperty(exports, "isPresent", { enumerable: true, get: function () { return IfcExpression_js_1.isPresent; } });
Object.defineProperty(exports, "isNullish", { enumerable: true, get: function () { return IfcExpression_js_1.isNullish; } });
Object.defineProperty(exports, "isExprEvalError", { enumerable: true, get: function () { return IfcExpression_js_1.isExprEvalError; } });
Object.defineProperty(exports, "isExprEvalSuccess", { enumerable: true, get: function () { return IfcExpression_js_1.isExprEvalSuccess; } });
Object.defineProperty(exports, "ExprToTextInputLinker", { enumerable: true, get: function () { return IfcExpression_js_1.ExprToTextInputLinker; } });
Object.defineProperty(exports, "ExprFacade", { enumerable: true, get: function () { return IfcExpression_js_1.ExprFacade; } });
Object.defineProperty(exports, "ArrayType", { enumerable: true, get: function () { return IfcExpression_js_1.ArrayType; } });
Object.defineProperty(exports, "SimpleType", { enumerable: true, get: function () { return IfcExpression_js_1.SimpleType; } });
Object.defineProperty(exports, "TupleType", { enumerable: true, get: function () { return IfcExpression_js_1.TupleType; } });
Object.defineProperty(exports, "TypeDisjunction", { enumerable: true, get: function () { return IfcExpression_js_1.TypeDisjunction; } });
Object.defineProperty(exports, "Types", { enumerable: true, get: function () { return IfcExpression_js_1.Types; } });
var E_js_1 = require("./E.js");
Object.defineProperty(exports, "E", { enumerable: true, get: function () { return E_js_1.E; } });
//# sourceMappingURL=index.js.map