Changeset 071a31a for src/ResolvExpr
- Timestamp:
- Mar 3, 2016, 2:45:51 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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, with_gc
- Children:
- 620cb95
- Parents:
- c14cff1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/ResolvExpr/Resolver.cc ¶
rc14cff1 r071a31a 479 479 TypeEnvironment env; 480 480 AlternativeFinder finder( *this, env ); 481 finder.find( ctorInit->get_ctor() ); 482 483 if ( finder.get_alternatives().size() == 0 ) { 481 try { 482 finder.find( ctorInit->get_ctor() ); 483 } catch ( SemanticError ) { 484 // no alternatives for the constructor initializer - fallback on C-style initializer 485 // xxx- not sure if this makes a ton of sense - should maybe never be able to have this situation? 484 486 fallbackInit( ctorInit ); 485 } else if ( finder.get_alternatives().size() == 1 ) { 487 return; 488 } 489 490 assert( ! finder.get_alternatives().empty() ); 491 492 if ( finder.get_alternatives().size() == 1 ) { 486 493 Alternative &choice = finder.get_alternatives().front(); 487 494 if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * >( choice.expr ) ) {
Note: See TracChangeset
for help on using the changeset viewer.