Changeset 6812d89
- Timestamp:
- Apr 21, 2016, 8:24:15 AM (7 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 743fbda, fbfb38e
- Parents:
- 6e991d6 (diff), 0cb1d61 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.cc
r6e991d6 r6812d89 784 784 using std::cerr; 785 785 786 cerr << "===idTable===" << std::endl; 787 if ( tables ) dump( tables->idTable, os ); 788 cerr << "===typeTable===" << std::endl; 789 if ( tables ) dump( tables->typeTable, os ); 790 cerr << "===structTable===" << std::endl; 791 if ( tables ) dump( tables->structTable, os ); 792 cerr << "===enumTable===" << std::endl; 793 if ( tables ) dump( tables->enumTable, os ); 794 cerr << "===unionTable===" << std::endl; 795 if ( tables ) dump( tables->unionTable, os ); 796 cerr << "===contextTable===" << std::endl; 797 if ( tables ) dump( tables->traitTable, os ); 786 if ( tables ) { 787 os << "--- scope " << tables->scope << " ---" << std::endl; 788 789 os << "===idTable===" << std::endl; 790 dump( tables->idTable, os ); 791 os << "===typeTable===" << std::endl; 792 dump( tables->typeTable, os ); 793 os << "===structTable===" << std::endl; 794 dump( tables->structTable, os ); 795 os << "===enumTable===" << std::endl; 796 dump( tables->enumTable, os ); 797 os << "===unionTable===" << std::endl; 798 dump( tables->unionTable, os ); 799 os << "===contextTable===" << std::endl; 800 dump( tables->traitTable, os ); 801 802 tables->base.print( os, indent ); 803 } else { 804 os << "--- end ---" << std::endl; 805 } 806 798 807 } 799 808 } // namespace SymTab
Note: See TracChangeset
for help on using the changeset viewer.