]> git.saurik.com Git - bison.git/blobdiff - src/getargs.c
* src/getargs.h (trace_e): Add trace_scan, and trace_parse.
[bison.git] / src / getargs.c
index 9f6aef4a57a907c6c99824f4b0caa7e6af30d35e..372f7fc91279b662143bd7c2f5e92980dde171ca 100644 (file)
@@ -52,6 +52,8 @@ static const char * const trace_args[] =
   /* In a series of synonyms, present the most meaningful first, so
      that argmatch_valid be more readable.  */
   "none       - no report",
+  "scan       - scanner traces",
+  "parse      - parser traces",
   "automaton  - contruction of the automaton",
   "bitsets    - use of bitsets",
   "grammar    - reading, reducing of the grammar",
@@ -66,6 +68,8 @@ static const char * const trace_args[] =
 static const int trace_types[] =
 {
   trace_none,
+  trace_scan,
+  trace_parse,
   trace_automaton,
   trace_bitsets,
   trace_grammar,