()
| 5167 | } |
| 5168 | } |
| 5169 | get meta() { |
| 5170 | if (!this._meta) { |
| 5171 | if (this.isFrozen) { |
| 5172 | const s = new this.ObjectElement() |
| 5173 | return (s.freeze(), s) |
| 5174 | } |
| 5175 | this._meta = new this.ObjectElement() |
| 5176 | } |
| 5177 | return this._meta |
| 5178 | } |
| 5179 | set meta(s) { |
| 5180 | s instanceof this.ObjectElement ? (this._meta = s) : this.meta.set(s || {}) |
| 5181 | } |