added an overridable argument to the reactive attribute. The code generator adds the relevant 'virtual' / 'override' / 'new' keyword to the property declaration.
[Reactive(Inheritance = InheritanceModifier.Virtual, SetModifier = AccessModifier.Public)] private string? _nodeName;
What might this PR break?
Please check if the PR fulfills these requirements
[x] Tests for the changes have been added (for bug fixes / features)
[ ] Docs have been added / updated (for bug fixes / features)
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
What kind of change does this PR introduce?
feature added overridable property "Inheritance"
What is the current behavior?
122
What is the new behavior?
added an overridable argument to the reactive attribute. The code generator adds the relevant 'virtual' / 'override' / 'new' keyword to the property declaration.
[Reactive(Inheritance = InheritanceModifier.Virtual, SetModifier = AccessModifier.Public)] private string? _nodeName;
What might this PR break?
Please check if the PR fulfills these requirements
Other information:
closes #122