We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In .NET, access modifiers must match exactly. So this is invalid:
.NET
class Foo { protected abstract void DoSomething(); } class Bar : Foo { public void DoSomething() { } }
When jsii detects inconsist access modifiers, it should report an error.
jsii
The text was updated successfully, but these errors were encountered:
See aws/aws-cdk#392 for example.
Sorry, something went wrong.
This was fixed by #115.
No branches or pull requests
In
.NET
, access modifiers must match exactly. So this is invalid:When
jsii
detects inconsist access modifiers, it should report an error.The text was updated successfully, but these errors were encountered: