UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 1.69 kB
/* 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 { JsonDictionaryItem } from "./JsonDictionaryItem"; import { markType } from "./type"; /** * @hidden */ export let JsonDictionaryArray = /*@__PURE__*/ (() => { class JsonDictionaryArray extends JsonDictionaryItem { constructor() { super(...arguments); this._items = null; } get items() { return this._items; } set items(a) { this._items = a; } d(a) { a.i("["); a.h(); a.g(); if (this.items != null) { for (let b = 0; b < this.items.length; b++) { if (b > 0) { a.j(","); } let c = this.items[b]; if (c == null) { a.i("null"); } else { c.d(a); } } } a.h(); a.e(); a.i("]"); } } JsonDictionaryArray.$t = /*@__PURE__*/ markType(JsonDictionaryArray, 'JsonDictionaryArray', JsonDictionaryItem.$); return JsonDictionaryArray; })();