Changeset eba615c for src/AST/Stmt.hpp


Ignore:
Timestamp:
May 28, 2019, 4:26:07 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
157a816, c786e1d, d76c588, ebc0a85
Parents:
c519942 (diff), 0d70e0d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Stmt.hpp

    rc519942 reba615c  
    278278        ExceptionKind kind;
    279279
    280         ThrowStmt( 
     280        ThrowStmt(
    281281                const CodeLocation & loc, ExceptionKind kind, const Expr * expr, const Expr * target,
    282282                std::vector<Label> && labels = {} )
     
    296296        ptr<FinallyStmt> finally;
    297297
    298         TryStmt( 
     298        TryStmt(
    299299                const CodeLocation & loc, const CompoundStmt * body,
    300300                std::vector<ptr<CatchStmt>> && handlers, const FinallyStmt * finally,
     
    316316        ExceptionKind kind;
    317317
    318         CatchStmt( 
     318        CatchStmt(
    319319                const CodeLocation & loc, ExceptionKind kind, const Decl * decl, const Expr * cond,
    320320                const Stmt * body, std::vector<Label> && labels = {} )
Note: See TracChangeset for help on using the changeset viewer.