symbolByName function
General Library Documentation Undocument By General Corporation & Global Corporation & General Developer
Implementation
WasmSymbol symbolByName(Memory m, String name) {
final WasmSymbol? s = m._symbolsByName[name];
if (s != null) {
return s;
} else {
throw ArgumentError('Could not find symbol $name!');
}
}