diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-19 11:29:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-19 11:29:50 +0200 |
commit | 16b3146a1ed4497205a378472b35c40eb34c0d40 (patch) | |
tree | 1607ca63497008ce51f4333dcea9b729483f23f8 /libparser.h | |
parent | Compile with -O2 and -s (diff) | |
download | libparser-16b3146a1ed4497205a378472b35c40eb34c0d40.tar.gz libparser-16b3146a1ed4497205a378472b35c40eb34c0d40.tar.bz2 libparser-16b3146a1ed4497205a378472b35c40eb34c0d40.tar.xz |
Add rejection + fix documentation of comment syntax (can contain string)
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libparser.h')
-rw-r--r-- | libparser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libparser.h b/libparser.h index 88e5b6e..d8b13d9 100644 --- a/libparser.h +++ b/libparser.h @@ -12,6 +12,7 @@ union libparser_sentence; enum libparser_sentence_type { LIBPARSER_SENTENCE_TYPE_CONCATENATION, /* .binary */ LIBPARSER_SENTENCE_TYPE_ALTERNATION, /* .binary */ + LIBPARSER_SENTENCE_TYPE_REJECTION, /* .unary */ LIBPARSER_SENTENCE_TYPE_OPTIONAL, /* .unary */ LIBPARSER_SENTENCE_TYPE_REPEATED, /* .unary */ LIBPARSER_SENTENCE_TYPE_STRING, /* .string */ |