(name)
| 583 | |
| 584 | |
| 585 | def is_user_export(name): |
| 586 | if is_internal_global(name): |
| 587 | return False |
| 588 | return name not in {'__asyncify_data', '__asyncify_state', '__indirect_function_table', 'memory'} and not name.startswith(('dynCall_', 'orig$')) |
| 589 | |
| 590 | |
| 591 | def asmjs_mangle(name): |
no test coverage detected