Changeset 5541ea3d for doc/theses/andrew_beach_MMath/code/ThrowFinally.java
- Timestamp:
- Aug 4, 2021, 2:40:11 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 199894e
- Parents:
- 0640189e (diff), df5b2c8 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/andrew_beach_MMath/code/ThrowFinally.java
r0640189e r5541ea3d 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();
Note:
See TracChangeset
for help on using the changeset viewer.