Changeset e4da70b
- Timestamp:
- Jul 27, 2021, 11:28:46 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 9a3a313, ba0d2ea
- Parents:
- 04141f8
- 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 7 7 throws EmptyException { 8 8 if (0 < frames) { 9 unwind_finally(frames - 1); 9 try { 10 unwind_finally(frames - 1); 11 } finally { 12 // ... 13 } 10 14 } else { 11 15 throw new EmptyException(); -
doc/theses/andrew_beach_MMath/code/ThrowOther.java
r04141f8 re4da70b 16 16 // ... 17 17 } 18 } else if (should_throw) { 19 throw new NotRaisedException(); 18 20 } else { 19 if (should_throw) {20 throw new NotRaisedException();21 }22 21 throw new EmptyException(); 23 22 }
Note: See TracChangeset
for help on using the changeset viewer.