staticSymbols property
Returns an iterable of the symbols in the static symbol table(s). The ordering of the symbols is not guaranteed.
Implementation
@override
Iterable<Symbol> get staticSymbols sync* {
for (final section in namedSections('.symtab')) {
final symtab = section as SymbolTable;
for (final symbol in symtab.values) {
yield symbol;
}
}
}