MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / isJsOnlySymbol

Function isJsOnlySymbol

src/utility.mjs:205–207  ·  view source on GitHub ↗
(symbol)

Source from the content-addressed store, hash-verified

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

Callers 7

processLibraryFunctionFunction · 0.90
addFromLibraryFunction · 0.90
getUnusedLibrarySymbolsFunction · 0.90
exportRuntimeSymbolsFunction · 0.90
mergeIntoFunction · 0.85
makeStubFunction · 0.85
libcore.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected