@ignore
| 5456 | |
| 5457 | /** @ignore */ |
| 5458 | class Symbol$ extends transformOrFail( |
| 5459 | String$.annotations({ description: "a string to be decoded into a globally shared symbol" }), |
| 5460 | SymbolFromSelf, |
| 5461 | { |
| 5462 | strict: false, |
| 5463 | decode: (i) => decodeSymbol(i), |
| 5464 | encode: (a, _, ast) => encodeSymbol(a, ast) |
| 5465 | } |
| 5466 | ).annotations({ identifier: "Symbol" }) {} |
| 5467 | |
| 5468 | export { |
| 5469 | /** |
nothing calls this directly
no test coverage detected