symbolByAddress function

WasmSymbol symbolByAddress(
  1. Memory m,
  2. int address
)

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!');
  }
}