We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 632e4f6 commit f2900faCopy full SHA for f2900fa
1 file changed
poniescript-core/src/lexer.rs
@@ -154,9 +154,6 @@ pub struct Lexer {
154
at_eof: bool,
155
156
pub had_error: bool,
157
-
158
- // The previously stored token, if any.
159
- prev: Option<Token>,
160
}
161
162
fn is_whitespace(c: char) -> bool {
@@ -192,7 +189,6 @@ impl Lexer {
192
189
at_eof: false,
193
190
194
191
had_error: false,
195
- prev: None,
196
197
198
0 commit comments