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
Currently the tree-edit syntax generation and rendering relies on the
assumption that all modifications of the syntax tree would operate on a
contiguous region (adjacent siblings).
For example, if we have ("(" identifier "," comment [identifier]) and perform
a deletion, we'd like the result to be ("(" identifier comment), and the
comment should be left unmodified.
Currently the
tree-edit
syntax generation and rendering relies on theassumption that all modifications of the syntax tree would operate on a
contiguous region (adjacent siblings).
For example, if we have
("(" identifier "," comment [identifier])
and performa deletion, we'd like the result to be
("(" identifier comment)
, and thecomment should be left unmodified.
Related to #18
The text was updated successfully, but these errors were encountered: