You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Context.compileImpl is called with a Reader rather than a String to supply the source, if the compilation fails due to ClassFileFormatException and we try to use the interpreter for a second attempt, the second parse on this line will fail as the Reader would've already run through all available data.
One possible workaround is to comment out this line so that we always have the source in the String rather than the Reader.