Changeset e4da70b


Ignore:
Timestamp:
Jul 27, 2021, 11:28:46 AM (3 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
9a3a313, ba0d2ea
Parents:
04141f8
Message:

Added another helper script for exception benchmarks and fixed up the Java benchmarks.

Location:
doc/theses/andrew_beach_MMath/code
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/andrew_beach_MMath/code/ThrowFinally.java

    r04141f8 re4da70b  
    77                        throws EmptyException {
    88                if (0 < frames) {
    9                         unwind_finally(frames - 1);
     9                        try {
     10                                unwind_finally(frames - 1);
     11                        } finally {
     12                                // ...
     13                        }
    1014                } else {
    1115                        throw new EmptyException();
  • doc/theses/andrew_beach_MMath/code/ThrowOther.java

    r04141f8 re4da70b  
    1616                                // ...
    1717                        }
     18                } else if (should_throw) {
     19                        throw new NotRaisedException();
    1820                } else {
    19                         if (should_throw) {
    20                                 throw new NotRaisedException();
    21                         }
    2221                        throw new EmptyException();
    2322                }
Note: See TracChangeset for help on using the changeset viewer.