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
Currently, simple calls to WriteNode and WriteNodes look like this:
WriteNode
WriteNodes
WriteNode("SwitchValue", expr.SwitchValue); WriteNodes("TestValues", switchCase.TestValues);
We could have an overload that takes an expression, then calls would look like this:
WriteNode(() => expr.SwitchValue); WriteNodes(() => switchCase.TestValues);
and resolve the path by parsing the expression tree.
We'd want to investigate potential costs of constructing these expression trees at runtime.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, simple calls to
WriteNode
andWriteNodes
look like this:We could have an overload that takes an expression, then calls would look like this:
and resolve the path by parsing the expression tree.
We'd want to investigate potential costs of constructing these expression trees at runtime.
The text was updated successfully, but these errors were encountered: