(name)
| 951 | |
| 952 | // forcing the filesystem exports a few things by default |
| 953 | function isExportedByForceFilesystem(name) { |
| 954 | return name === 'FS_createPath' || |
| 955 | name === 'FS_createDataFile' || |
| 956 | name === 'FS_createPreloadedFile' || |
| 957 | name === 'FS_unlink' || |
| 958 | name === 'addRunDependency' || |
| 959 | // The old FS has some functionality that WasmFS lacks. |
| 960 | name === 'FS_createLazyFile' || |
| 961 | name === 'FS_createDevice' || |
| 962 | name === 'removeRunDependency'; |
| 963 | } |
| 964 | |
| 965 | function missingGlobal(sym, msg) { |
| 966 | if (typeof globalThis !== 'undefined') { |
no outgoing calls
no test coverage detected