CLI
- Added debug.parser=3 support to ::desugarTags.
This commit is contained in:
11
src/CLI.cpp
11
src/CLI.cpp
@@ -744,6 +744,7 @@ bool CLI::exactMatch (
|
|||||||
// -tag --> tags _notag_ tag
|
// -tag --> tags _notag_ tag
|
||||||
void CLI::desugarTags ()
|
void CLI::desugarTags ()
|
||||||
{
|
{
|
||||||
|
bool changes = false;
|
||||||
std::vector <A> reconstructed;
|
std::vector <A> reconstructed;
|
||||||
std::vector <A>::iterator a;
|
std::vector <A>::iterator a;
|
||||||
for (a = _args.begin (); a != _args.end (); ++a)
|
for (a = _args.begin (); a != _args.end (); ++a)
|
||||||
@@ -773,6 +774,8 @@ void CLI::desugarTags ()
|
|||||||
right.tag ("LITERAL");
|
right.tag ("LITERAL");
|
||||||
right.tag ("FILTER");
|
right.tag ("FILTER");
|
||||||
reconstructed.push_back (right);
|
reconstructed.push_back (right);
|
||||||
|
|
||||||
|
changes = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
reconstructed.push_back (*a);
|
reconstructed.push_back (*a);
|
||||||
@@ -781,7 +784,13 @@ void CLI::desugarTags ()
|
|||||||
reconstructed.push_back (*a);
|
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"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user