aboutsummaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-07-30 14:16:58 +0100
committerAleksey Kladov <[email protected]>2018-07-30 14:16:58 +0100
commit3b6a6f6673041cf9ee315c00f9b0e24e2c067091 (patch)
tree001e556601e9dd37556338f877759466846c7af0 /src/parser
parentd39198490f878a9ae395af1cf923fb7375de4548 (diff)
Add render test functionality
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