Changeset 361bf01 for src/SymTab
- Timestamp:
- Dec 11, 2020, 11:20:45 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 5b9a0ae
- Parents:
- a6e0e4c
- Location:
- src/SymTab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SymTab/Mangler.cc ¶
ra6e0e4c r361bf01 666 666 // skip if not including qualifiers 667 667 if ( typeMode ) return; 668 if ( auto ptype = dynamic_cast< const ast:: ParameterizedType * >(type) ) {668 if ( auto ptype = dynamic_cast< const ast::FunctionType * >(type) ) { 669 669 if ( ! ptype->forall.empty() ) { 670 670 std::list< std::string > assertionNames; -
TabularUnified src/SymTab/Validate.cc ¶
ra6e0e4c r361bf01 1793 1793 static const node_t * forallFixer( 1794 1794 const CodeLocation & loc, const node_t * node, 1795 ast:: ParameterizedType::ForallList parent_t::* forallField1795 ast::FunctionType::ForallList parent_t::* forallField 1796 1796 ) { 1797 1797 for ( unsigned i = 0; i < (node->* forallField).size(); ++i ) {
Note: See TracChangeset
for help on using the changeset viewer.