mirror of
https://github.com/ParkerTenBroeck/coroutines.git
synced 2026-06-07 05:08:51 -04:00
now each handler has an inline and prelude section so exception handlers run properly
This commit is contained in:
parent
8593eada03
commit
1e1b1beadf
7 changed files with 199 additions and 146 deletions
|
|
@ -9,7 +9,7 @@ public record Frame(FrameTracker.Type[] locals, FrameTracker.Type[] stack) {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Frame[l =" + Arrays.toString(locals) + ", s = " + Arrays.toString(stack) + "]";
|
||||
return "Frame[label =" + Arrays.toString(locals) + ", s = " + Arrays.toString(stack) + "]";
|
||||
}
|
||||
|
||||
public void save_locals(StateMachineBuilder smb, CodeBuilder cob, SavedStateTracker sst, int loc_off){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue