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 many cases, nodes of the following variety are created:
profile p0() setting("Setting 1", profile: p0) setting("Setting 2", profile: p0) // etc
A potentially better way to do this would be with a new "context" construct:
profile p0() with context(profile: p0) { setting("Setting 1") setting("Setting 2") }
Contexts can also be named:
context some_context(profile: p0) with some_context { setting("Setting 1") }
The text was updated successfully, but these errors were encountered:
ange-yaghi
No branches or pull requests
In many cases, nodes of the following variety are created:
A potentially better way to do this would be with a new "context" construct:
Contexts can also be named:
The text was updated successfully, but these errors were encountered: