-
Notifications
You must be signed in to change notification settings - Fork 26
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
Modify help links to choose a more specific factory method #76
Labels
enhancement
New feature or request
Comments
Useful LINQPad query:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, (except for
BinaryExpression
andUnaryExpression
which return the method based on the expression'sNodeType
) all factory methods which return the same object type as the node are displayed. For example,MemberExpression
displays:It might be better to show only the specific method that applies to this node, duplicating the logic of the factory methods formatter.
OTOH, as long as there aren't too many, it might be better to show all these possibilities.
The text was updated successfully, but these errors were encountered: