summaryrefslogtreecommitdiff
path: root/tables_shared.h
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-09-13 21:54:02 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-09-13 21:54:02 +0000
commit1c8a5f9d3f46fc35292723e0e600a0eb98e206b5 (patch)
tree81728aa8156adee049c7e2d3c60c7512d34caf90 /tables_shared.h
parent1f0b3a5efb035501bad92519d46f4015ab540dfd (diff)
Created test for reject.
Handled reject-triggered tables in serialization.
Diffstat (limited to 'tables_shared.h')
-rw-r--r--tables_shared.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/tables_shared.h b/tables_shared.h
index d2afff0..f52ee23 100644
--- a/tables_shared.h
+++ b/tables_shared.h
@@ -69,21 +69,22 @@ dnl flex code (hence the name "_shared").
#endif
-/** Possible values for t_id field. Each one corresponds to a
+/** Possible values for td_id field. Each one corresponds to a
* scanner table of the same name.
*/
enum yytbl_id {
- YYT_ID_ACCEPT = 0x01, /**< 1-dim ints */
- YYT_ID_BASE = 0x02, /**< 1-dim ints */
- YYT_ID_CHK = 0x03, /**< 1-dim ints */
- YYT_ID_DEF = 0x04, /**< 1-dim ints */
- YYT_ID_EC = 0x05, /**< 1-dim ints */
- YYT_ID_META = 0x06, /**< 1-dim ints */
- YYT_ID_NUL_TRANS = 0x07, /**< 1-dim ints, maybe indices */
- YYT_ID_NXT = 0x08, /**< may be 2 dimensional ints */
- YYT_ID_RULE_CAN_MATCH_EOL = 0x09, /**< 1-dim ints */
- YYT_ID_START_STATE_LIST = 0x0A, /**< 1-dim indices into trans tbl */
- YYT_ID_TRANSITION = 0x0B /**< structs */
+ YYTD_ID_ACCEPT = 0x01, /**< 1-dim ints */
+ YYTD_ID_BASE = 0x02, /**< 1-dim ints */
+ YYTD_ID_CHK = 0x03, /**< 1-dim ints */
+ YYTD_ID_DEF = 0x04, /**< 1-dim ints */
+ YYTD_ID_EC = 0x05, /**< 1-dim ints */
+ YYTD_ID_META = 0x06, /**< 1-dim ints */
+ YYTD_ID_NUL_TRANS = 0x07, /**< 1-dim ints, maybe indices */
+ YYTD_ID_NXT = 0x08, /**< may be 2 dimensional ints */
+ YYTD_ID_RULE_CAN_MATCH_EOL = 0x09, /**< 1-dim ints */
+ YYTD_ID_START_STATE_LIST = 0x0A, /**< 1-dim indices into trans tbl */
+ YYTD_ID_TRANSITION = 0x0B, /**< structs */
+ YYTD_ID_ACCLIST = 0x0C /**< 1-dim ints */
};
/** bit flags for t_flags field of struct yytbl_data */