Searched refs:table_proto (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-js.cc | 1555 Handle<JSObject> table_proto( in Install() local 1559 JSFunction::SetInitialMap(table_constructor, table_map, table_proto); in Install() 1560 InstallGetter(isolate, table_proto, "length", WebAssemblyTableGetLength); in Install() 1561 InstallFunc(isolate, table_proto, "grow", WebAssemblyTableGrow, 1); in Install() 1562 InstallFunc(isolate, table_proto, "get", WebAssemblyTableGet, 1); in Install() 1563 InstallFunc(isolate, table_proto, "set", WebAssemblyTableSet, 2); in Install() 1564 JSObject::AddProperty(isolate, table_proto, factory->to_string_tag_symbol(), in Install()
|