You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have a way to tell argagg to forward unknown arguments to a generic sink, so that unrecognized arguments can be processed by other means. Similar to LLVM's Sink which tells the parser that an option eats all unrecognized args.
The text was updated successfully, but these errors were encountered:
After studying a bit your code I would say this is could be implemented by a config in the parser (parser.ignore_unknown_args() or something like that) and register all unknown flags in an internal buffer of the arguments map instead of throwing an exception.
vietjtnguyen
changed the title
Support for syncs of unparsed arguments
Support for sinks of unparsed arguments
Jan 29, 2019
I would like to have a way to tell argagg to forward unknown arguments to a generic sink, so that unrecognized arguments can be processed by other means. Similar to LLVM's
Sink
which tells the parser that an option eats all unrecognized args.The text was updated successfully, but these errors were encountered: