Home
last modified time | relevance | path

Searched defs:FuncData (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dc-api.cc1343 struct FuncData { struct
1344 Store* store;
1345 own<FuncType> type;
1346 enum Kind { kCallback, kCallbackWithEnv } kind;
1347 union {
1351 void (*finalizer)(void*);
1352 void* env;
1354 FuncData(Store* store, const FuncType* type, Kind kind) in FuncData() function
1361 ~FuncData() { in ~FuncData()