igniteui-react-core
Version:
Ignite UI React Core.
34 lines (33 loc) • 1.63 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { IFilterExpressionEnvironment_$type } from "./IFilterExpressionEnvironment";
import { Dictionary$2 } from "./Dictionary$2";
/**
* @hidden
*/
var FilterExpressionEnvironment = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilterExpressionEnvironment, _super);
function FilterExpressionEnvironment() {
var _this = _super.call(this) || this;
_this.a = new Dictionary$2(String_$type, Base.$, 0);
return _this;
}
FilterExpressionEnvironment.prototype.getVariableValue = function (a) {
return this.a.item(a);
};
FilterExpressionEnvironment.prototype.setVariableValue = function (a, b) {
this.a.item(a, b);
};
FilterExpressionEnvironment.prototype.hasVariable = function (a) {
return this.a.containsKey(a);
};
FilterExpressionEnvironment.$t = markType(FilterExpressionEnvironment, 'FilterExpressionEnvironment', Base.$, [IFilterExpressionEnvironment_$type]);
return FilterExpressionEnvironment;
}(Base));
export { FilterExpressionEnvironment };