staticSymbols property

  1. @override
Iterable<Symbol> staticSymbols

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;
    }
  }
}