Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.impl.h

    rd55d7a6 r834b892  
    7777                        maybeAccept_impl( *i, visitor );
    7878                } catch( SemanticError &e ) {
     79                        e.set_location( (*i)->location );
    7980                        errors.append( e );
    8081                }
     
    103104                        maybeMutate_impl( *i, mutator );
    104105                } catch( SemanticError &e ) {
     106                        e.set_location( (*i)->location );
    105107                        errors.append( e );
    106108                }
     
    132134                        }
    133135                } catch( SemanticError &e ) {
     136                        e.set_location( (*i)->location );
    134137                        errors.append( e );
    135138                }
     
    160163                        } // if
    161164                } catch( SemanticError &e ) {
     165                        e.set_location( (*i)->location );
    162166                        errors.append( e );
    163167                } // try
     
    196200
    197201                } catch ( SemanticError &e ) {
     202                        e.set_location( (*i)->location );
    198203                        errors.append( e );
    199204                }
Note: See TracChangeset for help on using the changeset viewer.