blob: 7cfe21df644dd5d4f50f22898dbc79576d7710c3 [file] [log] [blame] [edit]
#if !STANDALONE_WASM // standalone wasm creates the table in the wasm
var wasmTable = new WebAssembly.Table({
'initial': {{{ getQuoted('WASM_TABLE_SIZE') }}},
#if !ALLOW_TABLE_GROWTH
'maximum': {{{ getQuoted('WASM_TABLE_SIZE') }}},
#endif
'element': 'anyfunc'
});
#endif