Changes in src/AST/Pass.impl.hpp [fca78f1:16ba4897]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
rfca78f1 r16ba4897 250 250 } 251 251 pass_visitor_stats.depth--; 252 if ( !errors.isEmpty() ) { throw errors; }252 errors.throwIfNonEmpty(); 253 253 254 254 return new_kids; … … 287 287 __pedantic_pass_assert( new_kids.size() == container.size() ); 288 288 pass_visitor_stats.depth--; 289 if ( !errors.isEmpty() ) { throw errors; }289 errors.throwIfNonEmpty(); 290 290 291 291 return ast::__pass::resultN<container_t, node_t>{ mutated, new_kids }; … … 401 401 } 402 402 pass_visitor_stats.depth--; 403 if ( !errors.isEmpty() ) { throw errors; }403 errors.throwIfNonEmpty(); 404 404 } 405 405
Note:
See TracChangeset
for help on using the changeset viewer.