dynamicSymbols property

Iterable<Symbol> dynamicSymbols

Returns an iterable of the symbols in the dynamic symbol table(s). The ordering of the symbols is not guaranteed.

Implementation

Iterable<Symbol> get dynamicSymbols sync* {
  for (final section in namedSections('.dynsym')) {
    final dynsym = section as SymbolTable;
    for (final symbol in dynsym.values) {
      yield symbol;
    }
  }
}