tree-sitter-haxe
tree-sitter-haxe copied to clipboard
Failure to parse type path as implemented or extended type
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.