()
| 91 | |
| 92 | Object.defineProperty(symbol, 'properties', { |
| 93 | get() { |
| 94 | if (symbol.type === SymbolType.Array) { |
| 95 | return isArraySymbol(symbol) |
| 96 | ? StandardLibrary[SymbolType.Array]?.(symbol).properties |
| 97 | : {}; |
| 98 | } |
| 99 | return StandardLibrary[symbol.type]?.properties || {}; |
| 100 | }, |
| 101 | }); |
| 102 | |
| 103 | Object.defineProperty(symbol, 'methods', { |
nothing calls this directly
no test coverage detected