ifc-expressions 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,11 +11,17 @@ import { BooleanValue } from "./value/BooleanValue";
11
11
  import { LogicalValue } from "./value/LogicalValue";
12
12
  import { LiteralValue } from "./value/LiteralValue";
13
13
  import { ReferenceValue } from "./value/ReferenceValue";
14
+ import { IfcPropertySetAccessor } from "./context/IfcPropertySetAccessor";
15
+ import { IfcPropertyAccessor } from "./context/IfcPropertyAccessor";
16
+ import { IfcRootObjectAccessor } from "./context/IfcRootObjectAccessor";
17
+ import { IfcTypeObjectAccessor } from "./context/IfcTypeObjectAccessor";
18
+ import { NamedObjectAccessor } from "./context/NamedObjectAccessor";
19
+ import { ObjectAccessor } from "./context/ObjectAccessor";
14
20
  import { IfcExpressionEvaluationException } from "./expression/IfcExpressionEvaluationException";
15
21
  import IfcExpressionVisitor from "../generated/parser/IfcExpressionVisitor";
16
22
  import type { LiteralValueAnyArity } from "./value/LiteralValueAnyArity";
17
23
  import type { PrimitiveValueType } from "./value/PrimitiveValueType";
18
- export { IfcElementAccessor, IfcExpressionContext, Value, StringValue, BooleanValue, LogicalValue, NumericValue, LiteralValue, ReferenceValue, Expr, IfcExpressionEvaluationException, IfcExpressionErrorListener, IfcExpressionVisitor, };
24
+ export { IfcElementAccessor, IfcExpressionContext, Value, StringValue, BooleanValue, LogicalValue, NumericValue, LiteralValue, ReferenceValue, IfcPropertySetAccessor, IfcPropertyAccessor, IfcRootObjectAccessor, IfcTypeObjectAccessor, NamedObjectAccessor, ObjectAccessor, Expr, IfcExpressionEvaluationException, IfcExpressionErrorListener, IfcExpressionVisitor, };
19
25
  export type { PrimitiveValueType, LiteralValueAnyArity };
20
26
  export declare class IfcExpression {
21
27
  static parse(input: string, errorListener?: ErrorListener<Token>): ExprContext;
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.IfcExpression = exports.IfcExpressionVisitor = exports.IfcExpressionErrorListener = exports.IfcExpressionEvaluationException = exports.ReferenceValue = exports.NumericValue = exports.LogicalValue = exports.BooleanValue = exports.StringValue = exports.Value = exports.IfcElementAccessor = void 0;
6
+ exports.IfcExpression = exports.IfcExpressionVisitor = exports.IfcExpressionErrorListener = exports.IfcExpressionEvaluationException = exports.NamedObjectAccessor = exports.IfcTypeObjectAccessor = exports.IfcRootObjectAccessor = exports.IfcPropertyAccessor = exports.IfcPropertySetAccessor = exports.ReferenceValue = exports.NumericValue = exports.LogicalValue = exports.BooleanValue = exports.StringValue = exports.Value = exports.IfcElementAccessor = void 0;
7
7
  const antlr4_1 = require("antlr4");
8
8
  const ExprVisitor_1 = require("./ExprVisitor");
9
9
  const IfcExpressionErrorListener_1 = require("./IfcExpressionErrorListener");
@@ -25,6 +25,16 @@ const LogicalValue_1 = require("./value/LogicalValue");
25
25
  Object.defineProperty(exports, "LogicalValue", { enumerable: true, get: function () { return LogicalValue_1.LogicalValue; } });
26
26
  const ReferenceValue_1 = require("./value/ReferenceValue");
27
27
  Object.defineProperty(exports, "ReferenceValue", { enumerable: true, get: function () { return ReferenceValue_1.ReferenceValue; } });
28
+ const IfcPropertySetAccessor_1 = require("./context/IfcPropertySetAccessor");
29
+ Object.defineProperty(exports, "IfcPropertySetAccessor", { enumerable: true, get: function () { return IfcPropertySetAccessor_1.IfcPropertySetAccessor; } });
30
+ const IfcPropertyAccessor_1 = require("./context/IfcPropertyAccessor");
31
+ Object.defineProperty(exports, "IfcPropertyAccessor", { enumerable: true, get: function () { return IfcPropertyAccessor_1.IfcPropertyAccessor; } });
32
+ const IfcRootObjectAccessor_1 = require("./context/IfcRootObjectAccessor");
33
+ Object.defineProperty(exports, "IfcRootObjectAccessor", { enumerable: true, get: function () { return IfcRootObjectAccessor_1.IfcRootObjectAccessor; } });
34
+ const IfcTypeObjectAccessor_1 = require("./context/IfcTypeObjectAccessor");
35
+ Object.defineProperty(exports, "IfcTypeObjectAccessor", { enumerable: true, get: function () { return IfcTypeObjectAccessor_1.IfcTypeObjectAccessor; } });
36
+ const NamedObjectAccessor_1 = require("./context/NamedObjectAccessor");
37
+ Object.defineProperty(exports, "NamedObjectAccessor", { enumerable: true, get: function () { return NamedObjectAccessor_1.NamedObjectAccessor; } });
28
38
  const IfcExpressionEvaluationException_1 = require("./expression/IfcExpressionEvaluationException");
29
39
  Object.defineProperty(exports, "IfcExpressionEvaluationException", { enumerable: true, get: function () { return IfcExpressionEvaluationException_1.IfcExpressionEvaluationException; } });
30
40
  const IfcExpressionVisitor_1 = __importDefault(require("../generated/parser/IfcExpressionVisitor"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ifc-expressions",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Parsing and evaluation of IFC expressions",
5
5
  "main": "dist/cjs/ifcExpression.js",
6
6
  "module": "dist/mjs/ifcExpression.js",