aboutsummaryrefslogtreecommitdiff
path: root/src/parser/grammar/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/grammar/mod.rs')
-rw-r--r--src/parser/grammar/mod.rs62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/parser/grammar/mod.rs b/src/parser/grammar/mod.rs
index 5266354c1..f5b63aaab 100644
--- a/src/parser/grammar/mod.rs
+++ b/src/parser/grammar/mod.rs
@@ -110,65 +110,3 @@ fn error_block(p: &mut Parser, message: &str) {
110 } 110 }
111 err.complete(p, ERROR); 111 err.complete(p, ERROR);
112} 112}
113
114impl<'p> Parser<'p> {
115 fn at<L: Lookahead>(&self, l: L) -> bool {
116 l.is_ahead(self)
117 }
118
119 fn err_and_bump(&mut self, message: &str) {
120 let err = self.start();
121 self.error(message);
122 self.bump();
123 err.complete(self, ERROR);
124 }
125
126 fn expect(&mut self, kind: SyntaxKind) -> bool {
127 if self.at(kind) {
128 self.bump();
129 true
130 } else {
131 self.error(format!("expected {:?}", kind));
132 false
133 }
134 }
135
136 fn eat(&mut self, kind: SyntaxKind) -> bool {
137 self.current() == kind && {
138 self.bump();
139 true
140 }
141 }
142}
143
144trait Lookahead: Copy {
145 fn is_ahead(self, p: &Parser) -> bool;
146}
147
148impl Lookahead for SyntaxKind {
149 fn is_ahead(self, p: &Parser) -> bool {
150 p.current() == self
151 }
152}
153
154impl Lookahead for [SyntaxKind; 2] {
155 fn is_ahead(self, p: &Parser) -> bool {
156 p.current() == self[0] && p.nth(1) == self[1]
157 }
158}
159
160impl Lookahead for [SyntaxKind; 3] {
161 fn is_ahead(self, p: &Parser) -> bool {
162 p.current() == self[0] && p.nth(1) == self[1] && p.nth(2) == self[2]
163 }
164}
165
166#[derive(Clone, Copy)]
167struct AnyOf<'a>(&'a [SyntaxKind]);
168
169impl<'a> Lookahead for AnyOf<'a> {
170 fn is_ahead(self, p: &Parser) -> bool {
171 let curr = p.current();
172 self.0.iter().any(|&k| k == curr)
173 }
174}