Skip to content
New issue

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

Indirection stub settings for the instance method of an internal class generates build errors. #20

Closed
urasandesu opened this issue Sep 28, 2014 · 0 comments
Labels

Comments

@urasandesu
Copy link
Owner

In Prig v0.0.0-alpha8, when making the indirection stub settings like the following class, build errors occurred:

internal class FooInternal
{
    public void DoIt()
    {
        throw new NotImplementedException();
    }
}

It seems that the signature of the method DoIt is public seemingly. However, it requires implicit this parameter. The type of this is FooInternal, so the member's signature is non-public in fact.

Prig should avoid to make the indirection stub of such member automatically.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant