(s, o)
| 5127 | return a(this.toValue(), s) |
| 5128 | } |
| 5129 | getMetaProperty(s, o) { |
| 5130 | if (!this.meta.hasKey(s)) { |
| 5131 | if (this.isFrozen) { |
| 5132 | const s = this.refract(o) |
| 5133 | return (s.freeze(), s) |
| 5134 | } |
| 5135 | this.meta.set(s, o) |
| 5136 | } |
| 5137 | return this.meta.get(s) |
| 5138 | } |
| 5139 | setMetaProperty(s, o) { |
| 5140 | this.meta.set(s, o) |
| 5141 | } |
no test coverage detected