You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Scheme and Common Lisp, a pipe-enclosed literal is a symbol.
(let ((x '|(|))
(print x))
In the above S-expression, ( inside |(| should be ignored, but parinfer-rust seems failing.
I want a clue to fix this. Is it sufficient to add another switch for | around the code below?
Since Clojure doesn't have pipe-delimited symbols, it should be an option. But then, yes, handling pipe here and adding a flag like in_pipe_symbol to the state should do it.
In Scheme and Common Lisp, a pipe-enclosed literal is a symbol.
In the above S-expression,
(
inside|(|
should be ignored, but parinfer-rust seems failing.I want a clue to fix this. Is it sufficient to add another switch for
|
around the code below?parinfer-rust/src/parinfer.rs
Lines 899 to 900 in bcfdcd1
The text was updated successfully, but these errors were encountered: