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
I get this error when I try to use the method 'java.lang.ClassCastException: php.runtime.ext.support.compile.CompileFunction$Method cannot be cast to php.runtime.reflection.CompileMethodEntity$CompileMethod$Method' in res://php/gui/UXNodeWrapper.php
`public class PythonObject extends BaseWrapper {
public PythonObject(Environment env, T wrappedObject) {
super(env, wrappedObject);
}
public PythonObject(Environment env, ClassEntity clazz) {
super(env, clazz);
}
public T getWrappedObject(){
return super.getWrappedObject();
}
@Reflection.Signature
public PyObject __call__(){
return getWrappedObject().__call__();
}
@Reflection.Signature
public PyObject __call__(Object... args) {
return getWrappedObject().__call__(Py.javas2pys(args));
}
}`
The text was updated successfully, but these errors were encountered:
I get this error when I try to use the method
'java.lang.ClassCastException: php.runtime.ext.support.compile.CompileFunction$Method cannot be cast to php.runtime.reflection.CompileMethodEntity$CompileMethod$Method' in res://php/gui/UXNodeWrapper.php
`public class PythonObject extends BaseWrapper {
public PythonObject(Environment env, T wrappedObject) {
super(env, wrappedObject);
}
public PythonObject(Environment env, ClassEntity clazz) {
super(env, clazz);
}
}`
The text was updated successfully, but these errors were encountered: