-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
issue-63565: community requested small QoL fix for more configurabili… #108005
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")) | ||
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
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
compileEnum
helper to do this more easily, see the handling ofBackgroundPolicy
as an example