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

Function is_internal_global

tools/shared.py:576–582  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

574
575
576def is_internal_global(name):
577 internal_start_stop_symbols = {'__start_em_asm', '__stop_em_asm',
578 '__start_em_js', '__stop_em_js',
579 '__start_em_lib_deps', '__stop_em_lib_deps',
580 '__em_lib_deps'}
581 internal_prefixes = ('__em_js__', '__em_lib_deps')
582 return name in internal_start_stop_symbols or name.startswith(internal_prefixes)
583
584
585def is_user_export(name):

Callers 1

is_user_exportFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected