We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01240db commit 0dbe296Copy full SHA for 0dbe296
org.eclipse.jdt.core.compiler.batch/src/org/eclipse/jdt/internal/compiler/parser/Parser.java
@@ -11605,6 +11605,11 @@ protected void parse() {
11605
try {
11606
this.scanner.setActiveParser(this);
11607
ProcessTerminals : for (;;) {
11608
+ if (Thread.currentThread().isInterrupted()) {
11609
+ Thread.currentThread().interrupt();
11610
+ throw new RuntimeException("[" + Thread.currentThread().getName() + "] Task interrupted", new InterruptedException()); //$NON-NLS-1$ //$NON-NLS-2$
11611
+ }
11612
+
11613
int stackLength = this.stack.length;
11614
if (++this.stateStackTop >= stackLength) {
11615
System.arraycopy(
0 commit comments