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

Handle symbols that are defined in multiple places. #59

Open
JoshVarty opened this issue Dec 22, 2014 · 3 comments
Open

Handle symbols that are defined in multiple places. #59

JoshVarty opened this issue Dec 22, 2014 · 3 comments

Comments

@JoshVarty
Copy link
Contributor

For example in C# there are partial methods and partial classes that will be defined in multiple places. Currently, we just (randomly) choose one of the definitions and link to it.

This is bug number two in #57

@AmadeusW
Copy link
Member

As per MSDN: Partial classes and methods a partial method can have one partial definition and one partial implementation. This simplifies the problem such that we need to link only to the implementation (from the user's point of view, it's the implementation that matters.) Thoughts?

@JoshVarty
Copy link
Contributor Author

That's true for partial methods, but partial classes may have multiple implementations.

For example: http://source.roslyn.codeplex.com/Microsoft.CodeAnalysis.CSharp/a.html#9a30560b92496a20

@AmadeusW
Copy link
Member

You're right, we can't simplify this like that.

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

No branches or pull requests

2 participants