diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-01 03:34:27 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-01 03:34:27 -0400 |
commit | 35c10bb221ab678fb1722bd36c489e1b65d45391 (patch) | |
tree | 84b777e16d5de0729c21cd9dd7b1b3b19483e0b2 /src/sys/include/np | |
parent | 7f1b8e0de568defb342286216f0f9a8afd568bdb (diff) |
np: lex: Detect colon (':')
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/np')
-rw-r--r-- | src/sys/include/np/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/include/np/lex.h b/src/sys/include/np/lex.h index 8977305..ba4bdb8 100644 --- a/src/sys/include/np/lex.h +++ b/src/sys/include/np/lex.h @@ -61,6 +61,7 @@ typedef enum { TT_LT, /* '<' */ TT_LBRACK, /* '[' */ TT_RBRACK, /* ']' */ + TT_COLON, /* ':' */ /* Types */ TT_U8, /* 'u8' */ |