aboutsummaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/grammar/expressions.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parser/grammar/expressions.rs b/src/parser/grammar/expressions.rs
index 2145b8d8b..40f41535e 100644
--- a/src/parser/grammar/expressions.rs
+++ b/src/parser/grammar/expressions.rs
@@ -1,5 +1,9 @@
1use super::*; 1use super::*;
2 2
3// test expr_literals
4// fn foo() {
5// let _ = 92;
6// }
3pub(super) fn literal(p: &mut Parser) -> bool { 7pub(super) fn literal(p: &mut Parser) -> bool {
4 match p.current() { 8 match p.current() {
5 TRUE_KW | FALSE_KW | INT_NUMBER | FLOAT_NUMBER | BYTE | CHAR | STRING | RAW_STRING 9 TRUE_KW | FALSE_KW | INT_NUMBER | FLOAT_NUMBER | BYTE | CHAR | STRING | RAW_STRING