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 I generate the code by Janino and copy the code to a file MyTest.java,and step into the test function,I can't look the variable this and value in Intellij IDEA.
Then I debug the Janino 3.0.0,and find the logical in UnitCompiler#compile(FunctionDeclarator, ClassFile) is change the private non-static method to package static method, and add the "this" to the method's first argument.
"This" in IDEA is this object, but in Janino is the first augument, this cause the problem.