tree-sitter-haxe icon indicating copy to clipboard operation
tree-sitter-haxe copied to clipboard

Failure to parse type path as implemented or extended type

Open tobil4sk opened this issue 1 year ago • 0 comments

All these cases cause parser errors due to the pack.Test:

class Main extends pack.Test {}
class Main implements pack.ITest {}
interface Main extends pack.Test {}

They all give:

(module
      (ERROR
        (identifier)
        (identifier)
        (identifier)
        (object)))

If it is a type without a package path (e.g. just Test), then there is no issue.

tobil4sk avatar Aug 15 '24 16:08 tobil4sk