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
Fix for #935 had reintroduced stack overflow of GROOVY-7300 during runtime. See org.codehaus.groovy.classgen.asm.sc.StaticPropertyAccessHelper.PoppingMethodCallExpression#PoppingMethodCallExpression(Expression, MethodNode, TemporaryVariableExpression).
Exception in thread "main" java.lang.StackOverflowError
at java.lang.ReflectiveOperationException.<init>(ReflectiveOperationException.java:89)
at java.lang.reflect.InvocationTargetException.<init>(InvocationTargetException.java:72)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:123)
at groovy.lang.MetaBeanProperty.getProperty(MetaBeanProperty.java:59)
at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1317)
at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1269)
at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnSuperN(ScriptBytecodeAdapter.java:144)
at bugs.Two7300.getString(Groovy7300.groovy:15)
...
at bugs.Two7300.getString(Groovy7300.groovy:15)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:123)
at groovy.lang.MetaBeanProperty.getProperty(MetaBeanProperty.java:59)
at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1317)
at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1269)
at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnSuperN(ScriptBytecodeAdapter.java:144)
at bugs.Two7300.getString(Groovy7300.groovy:15)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:123)
at groovy.lang.MetaBeanProperty.getProperty(MetaBeanProperty.java:59)
The text was updated successfully, but these errors were encountered:
Consider the following:
Fix for #935 had reintroduced stack overflow of GROOVY-7300 during runtime. See
org.codehaus.groovy.classgen.asm.sc.StaticPropertyAccessHelper.PoppingMethodCallExpression#PoppingMethodCallExpression(Expression, MethodNode, TemporaryVariableExpression)
.The text was updated successfully, but these errors were encountered: