ifc-expressions
Version:
Parsing and evaluation of IFC expressions
20 lines (19 loc) • 444 B
JavaScript
export class ContextObjectValue {
constructor(value, type) {
this.contextObjectValue = value;
this.type = type;
}
getValue() {
return this.contextObjectValue;
}
equals(other) {
return this.contextObjectValue === other?.getValue();
}
toString() {
return "[Context object]";
}
getType() {
return this.type;
}
}
//# sourceMappingURL=ContextObjectValue.js.map