mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
CLI
- Added debug.parser=3 support to ::desugarTags.
This commit is contained in:
parent
ea8663652f
commit
255d7b2126
1 changed files with 10 additions and 1 deletions
11
src/CLI.cpp
11
src/CLI.cpp
|
@ -744,6 +744,7 @@ bool CLI::exactMatch (
|
|||
// -tag --> tags _notag_ tag
|
||||
void CLI::desugarTags ()
|
||||
{
|
||||
bool changes = false;
|
||||
std::vector <A> reconstructed;
|
||||
std::vector <A>::iterator a;
|
||||
for (a = _args.begin (); a != _args.end (); ++a)
|
||||
|
@ -773,6 +774,8 @@ void CLI::desugarTags ()
|
|||
right.tag ("LITERAL");
|
||||
right.tag ("FILTER");
|
||||
reconstructed.push_back (right);
|
||||
|
||||
changes = true;
|
||||
}
|
||||
else
|
||||
reconstructed.push_back (*a);
|
||||
|
@ -781,7 +784,13 @@ void CLI::desugarTags ()
|
|||
reconstructed.push_back (*a);
|
||||
}
|
||||
|
||||
_args = reconstructed;
|
||||
if (changes)
|
||||
{
|
||||
_args = reconstructed;
|
||||
|
||||
if (context.config.getInteger ("debug.parser") >= 3)
|
||||
context.debug (context.cli.dump ("CLI::analyze desugarTags"));
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue