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
First, I just want to thank you for this great Tree-Sitter parser, it's become one of the cornerstones of my current project. But I'm having a problem parsing this piece of Common Lisp code (from a Lispworks example).
(defunupdate-othello-board (self &optional squares)
(with-slots (grid game) self
(loop for piece
#+:Lucid in
#+:Lucid (coerce (or squares (slot-value game 'squares)) 'list)
#-:Lucid across
#-:Lucid (or squares (slot-value game 'squares))
for pinboard-object in (capi:layout-description grid)
unless (eq (othello-square-piece pinboard-object) piece)
do
(setf (othello-square-piece pinboard-object) piece))))
Did you check existing issues?
Tree-Sitter CLI Version, if relevant (output of
tree-sitter --version
)tree-sitter 0.21.0-pre-release-1 (76baf8152adada3a630bba9691fadb413a8e3783)
Describe the bug
First, I just want to thank you for this great Tree-Sitter parser, it's become one of the cornerstones of my current project. But I'm having a problem parsing this piece of Common Lisp code (from a Lispworks example).
Steps To Reproduce/Bad Parse Tree
Expected Behavior/Parse Tree
I expected to find a parse tree with no errors and 4 reader conditionals inside the loop.
Repro
No response
The text was updated successfully, but these errors were encountered: