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