Replies: 1 comment 1 reply
-
Continuing debugging: looks like the constructor body is invoked earlier than building a bridge. If I remove all assignments in constructor contents, it runs normally. Contents in question: class FunctionPlugin extends PluginBase {
FunctionPlugin(PluginContext context) : super(context) {
super.initial = 1;
}
} Trace:
Replacing this with a getter |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just got this exception and it is not immediately obvious what happened. I have a class
PluginBase
subclassed in a plugin asFunctionPlugin
.One thing out of common is that the class does not have a default contructor: there is a single required argument.
Beta Was this translation helpful? Give feedback.
All reactions