diff --git a/argus-parser/src/lexer.rs b/argus-parser/src/lexer.rs index ed3e8a6..5f35a43 100644 --- a/argus-parser/src/lexer.rs +++ b/argus-parser/src/lexer.rs @@ -169,6 +169,8 @@ pub fn lexer<'src>() -> impl Parser<'src, &'src str, Output<'src>, Error<'src>> let ident = text::ident().map(|ident: &str| match ident { "true" => Token::Bool(true), "false" => Token::Bool(false), + "TRUE" => Token::Bool(true), + "FALSE" => Token::Bool(false), "G" => Token::Always, "alw" => Token::Always, "always" => Token::Always,