- Added debug.parser=3 support to ::analyze.
This commit is contained in:
Paul Beckingham 2014-10-31 20:07:45 -04:00
parent c01ee07981
commit d5e732b47d

View file

@ -317,6 +317,9 @@ void CLI::analyze (bool parse /* = true */)
}
}
if (context.config.getInteger ("debug.parser") >= 3)
context.debug (context.cli.dump ("CLI::analyze start"));
// Find argument types.
aliasExpansion ();
findOverrides ();
@ -343,6 +346,9 @@ void CLI::analyze (bool parse /* = true */)
decomposeModTags ();
decomposeModSubstitutions ();
}
if (context.config.getInteger ("debug.parser") >= 3)
context.debug ("CLI::analyze end");
}
////////////////////////////////////////////////////////////////////////////////