-
Notifications
You must be signed in to change notification settings - Fork 15.2k
issue-63565: community requested small QoL fix for more configurabili… #108005
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
Changes from 5 commits
4e9cbd6
ae6e02e
9e67e06
6e31a07
49ca6dd
e222a84
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -230,6 +230,10 @@ class Parser { | |
| if (auto AllScopes = boolValue(N, "AllScopes")) | ||
| F.AllScopes = *AllScopes; | ||
| }); | ||
| Dict.handle("ArgumentLists", [&](Node &N) { | ||
| if (auto ArgumentLists = scalarValue(N, "ArgumentLists")) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (this comment remains to be addressed) |
||
| F.ArgumentLists = *ArgumentLists; | ||
| }); | ||
| Dict.parse(N); | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a
compileEnumhelper to do this more easily, see the handling ofBackgroundPolicyas an example