make ISBPLStreamer.streams static to avoid wrong IndexOutOfBounds
This commit is contained in:
parent
2eedde2f67
commit
32a915b63e
2 changed files with 4 additions and 1 deletions
|
@ -2282,7 +2282,7 @@ class ISBPLStreamer {
|
||||||
this.isbpl = isbpl;
|
this.isbpl = isbpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<ISBPLStream> streams = new ArrayList<>();
|
public static ArrayList<ISBPLStream> streams = new ArrayList<>();
|
||||||
|
|
||||||
public synchronized void action(Stack<ISBPLObject> stack, int action) throws IOException {
|
public synchronized void action(Stack<ISBPLObject> stack, int action) throws IOException {
|
||||||
ISBPLStream stream;
|
ISBPLStream stream;
|
||||||
|
|
3
bf.isbpl
3
bf.isbpl
|
@ -49,6 +49,9 @@ func makeCode {
|
||||||
idx ++ =idx
|
idx ++ =idx
|
||||||
}
|
}
|
||||||
1000 =idx
|
1000 =idx
|
||||||
|
JIO context debug if {
|
||||||
|
stdin itos puts
|
||||||
|
}
|
||||||
} =code
|
} =code
|
||||||
|
|
||||||
def c
|
def c
|
||||||
|
|
Loading…
Reference in a new issue