kylegoetz / tree-sitter-unison

Tree Sitter grammar for Unison programming language
MIT License
7 stars 8 forks source link

parsing error #77

Closed kylegoetz closed 2 weeks ago

kylegoetz commented 7 months ago

(==) x y = x * y errors in parsing

(unison [0, 0] - [0, 16]
  (term_declaration [0, 0] - [0, 16]
    (term_definition [0, 0] - [0, 16]
      name: (operator [0, 1] - [0, 1])
      (ERROR [0, 1] - [0, 3]
        (kw_equals [0, 1] - [0, 2])
        (kw_equals [0, 2] - [0, 3]))
      param: (wordy_id [0, 5] - [0, 6])
      param: (wordy_id [0, 7] - [0, 8])
      (kw_equals [0, 9] - [0, 10])
      (function_application [0, 11] - [0, 16]
        (wordy_id [0, 11] - [0, 12])
        (operator [0, 13] - [0, 14])
        (wordy_id [0, 15] - [0, 16])))))
kylegoetz commented 2 weeks ago

can't replicate anymore