mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Lexer
- Added notes about additional lexeme types that are needed, long term.
This commit is contained in:
parent
9ddf447321
commit
68fb1136cc
1 changed files with 10 additions and 0 deletions
10
src/Lexer.h
10
src/Lexer.h
|
@ -53,6 +53,16 @@ public:
|
||||||
typeDate,
|
typeDate,
|
||||||
typeDuration,
|
typeDuration,
|
||||||
typeTag,
|
typeTag,
|
||||||
|
/*
|
||||||
|
Recognizing more types means that Lexer::*_split and Lexer::token approach
|
||||||
|
the ideal form, whereby the command line becomes just one string that is
|
||||||
|
lexed into tokens. Those tokens are then simply dissected by type..
|
||||||
|
|
||||||
|
typeUUID,
|
||||||
|
typePattern,
|
||||||
|
typeSubstitution,
|
||||||
|
typeNameValue,
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
|
|
||||||
Lexer (const std::string&);
|
Lexer (const std::string&);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue