From 68fb1136cc9e4e26253088aeea5a016c7f778891 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 7 Sep 2014 13:37:46 -0400 Subject: [PATCH] Lexer - Added notes about additional lexeme types that are needed, long term. --- src/Lexer.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Lexer.h b/src/Lexer.h index 285330647..b4ad05eab 100644 --- a/src/Lexer.h +++ b/src/Lexer.h @@ -53,6 +53,16 @@ public: typeDate, typeDuration, 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&);