We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8dde63 commit 3af3051Copy full SHA for 3af3051
clarity/src/vm/ast/parser/v2/mod.rs
@@ -238,7 +238,7 @@ impl<'a> Parser<'a> {
238
span.end_column = token.span.end_column;
239
let out_nodes: Vec<_> = nodes.drain(..).collect();
240
let mut e = PreSymbolicExpression::list(out_nodes.into_boxed_slice());
241
- e.copy_span(&span);
+ e.copy_span(span);
242
Ok(Some(e))
243
}
244
Token::Eof => {
@@ -255,7 +255,7 @@ impl<'a> Parser<'a> {
255
256
257
258
259
260
261
_ => {
0 commit comments