diff options
Diffstat (limited to 'boot/lexer.ll')
| -rw-r--r-- | boot/lexer.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/boot/lexer.ll b/boot/lexer.ll index 17fe0ca..e8dde7c 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -184,6 +184,9 @@ program { #\[ { return yy::parser::make_GENERIC_OPEN(this->location); } +#\{ { + return yy::parser::make_ATTRIBUTE_OPEN(this->location); +} (0|{NATURAL})u|{HEXADECIMAL} { if (auto result = parse_integer<std::uint64_t>(yytext, 0)) { |
