mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Parser
- Stubbed ::resolveAliases.
This commit is contained in:
parent
29604d0626
commit
08b0d573e8
2 changed files with 8 additions and 0 deletions
|
@ -163,10 +163,12 @@ Tree* Parser::parse ()
|
||||||
{
|
{
|
||||||
findBinary ();
|
findBinary ();
|
||||||
findTerminator ();
|
findTerminator ();
|
||||||
|
resolveAliases ();
|
||||||
|
|
||||||
findOverrides ();
|
findOverrides ();
|
||||||
applyOverrides ();
|
applyOverrides ();
|
||||||
|
|
||||||
|
|
||||||
findSubstitution ();
|
findSubstitution ();
|
||||||
findPattern ();
|
findPattern ();
|
||||||
findTag ();
|
findTag ();
|
||||||
|
@ -315,6 +317,11 @@ void Parser::findTerminator ()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void Parser::resolveAliases ()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// Walk the top-level tree branches, looking for the first raw value that
|
// Walk the top-level tree branches, looking for the first raw value that
|
||||||
// autoCompletes to a valid command/report.
|
// autoCompletes to a valid command/report.
|
||||||
|
|
|
@ -68,6 +68,7 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void findTerminator ();
|
void findTerminator ();
|
||||||
|
void resolveAliases ();
|
||||||
void findPattern ();
|
void findPattern ();
|
||||||
void findSubstitution ();
|
void findSubstitution ();
|
||||||
void findTag ();
|
void findTag ();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue