(symbol)
| 203 | // Symbols that start with '$' are not exported to the wasm module. |
| 204 | // They are intended to be called exclusively by JS code. |
| 205 | export function isJsOnlySymbol(symbol) { |
| 206 | return symbol[0] == '$'; |
| 207 | } |
| 208 | |
| 209 | export const decoratorSuffixes = [ |
| 210 | '__sig', |
no outgoing calls
no test coverage detected