diff --git a/src/gr.cpp b/src/gr.cpp index 01772103..58aee171 100644 --- a/src/gr.cpp +++ b/src/gr.cpp @@ -91,14 +91,13 @@ int main (int argc, char** argv) grammar.debug (debug); grammar.loadFromFile (file); - // TODO Test commandLine against grammar. + // Test commandLine against grammar. if (commandLine != "") { LR0 lr0; lr0.debug (debug); lr0.initialize (grammar); - - // TODO Run the parser. + lr0.parse (commandLine); } }