aboutsummaryrefslogtreecommitdiff
path: root/src/parser/grammar
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-02-09 19:55:50 +0000
committerAleksey Kladov <[email protected]>2018-02-09 19:55:50 +0000
commitac932df22a993f0b287e60aa42055405ef94a6ae (patch)
tree4d53f6d5e34a4244f0aaeb2039454e3594856324 /src/parser/grammar
parent0ae26c344aa7477a18c2019cfa0062a9a745d70d (diff)
reformat
Diffstat (limited to 'src/parser/grammar')
-rw-r--r--src/parser/grammar/paths.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/grammar/paths.rs b/src/parser/grammar/paths.rs
index 1aa30f28b..a7fc90774 100644
--- a/src/parser/grammar/paths.rs
+++ b/src/parser/grammar/paths.rs
@@ -45,7 +45,7 @@ fn path_segment(p: &mut Parser, first: bool) {
45 IDENT | SELF_KW | SUPER_KW => p.bump(), 45 IDENT | SELF_KW | SUPER_KW => p.bump(),
46 _ => { 46 _ => {
47 p.error("expected identifier"); 47 p.error("expected identifier");
48 }, 48 }
49 }; 49 };
50 segment.complete(p, PATH_SEGMENT); 50 segment.complete(p, PATH_SEGMENT);
51} 51}