Changeset 16ba4897 for src/AST


Ignore:
Timestamp:
Oct 9, 2024, 5:07:59 PM (2 weeks ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
0766399
Parents:
1b770e40
Message:

Replaced SemanticErrorException::isEmpty with ...::throwIfNonEmpty. This is how it was used in every context and it saves a bit of text (if not two lines) at every use. I considered putting this function in the header for better inlining, but this should have at least the same preformance as the last version.

Location:
src/AST
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Node.hpp

    r1b770e40 r16ba4897  
    161161                }
    162162        }
    163         if ( ! errors.isEmpty() ) {
    164                 throw errors;
    165         }
     163        errors.throwIfNonEmpty();
    166164}
    167165
  • src/AST/Pass.impl.hpp

    r1b770e40 r16ba4897  
    250250        }
    251251        pass_visitor_stats.depth--;
    252         if ( !errors.isEmpty() ) { throw errors; }
     252        errors.throwIfNonEmpty();
    253253
    254254        return new_kids;
     
    287287        __pedantic_pass_assert( new_kids.size() == container.size() );
    288288        pass_visitor_stats.depth--;
    289         if ( !errors.isEmpty() ) { throw errors; }
     289        errors.throwIfNonEmpty();
    290290
    291291        return ast::__pass::resultN<container_t, node_t>{ mutated, new_kids };
     
    401401        }
    402402        pass_visitor_stats.depth--;
    403         if ( !errors.isEmpty() ) { throw errors; }
     403        errors.throwIfNonEmpty();
    404404}
    405405
Note: See TracChangeset for help on using the changeset viewer.