Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scala 3 varargs splices #452

Open
susliko opened this issue Jan 17, 2025 · 0 comments
Open

Scala 3 varargs splices #452

susliko opened this issue Jan 17, 2025 · 0 comments
Labels
area/scala3 Scala 3 syntax bug Something isn't working good first issue Good for newcomers

Comments

@susliko
Copy link
Collaborator

susliko commented Jan 17, 2025

Commit of tree-sitter-scala you tested this on

d3b9553

A code sample showing the error

foo(args*)

Show the error node

(compilation_unit ; [0, 0] - [3, 0]
  (call_expression ; [0, 0] - [0, 10]
    function: (identifier) ; [0, 0] - [0, 3]
    arguments: (arguments ; [0, 3] - [0, 10]
      (postfix_expression ; [0, 4] - [0, 9]
        (identifier) ; [0, 4] - [0, 8]
        (operator_identifier))))) ; [0, 8] - [0, 9]

What do you expect the tree to look like

Should be similar to the tree of

foo(args:_*)

which is

(compilation_unit ; [0, 0] - [3, 0]
  (call_expression ; [0, 0] - [0, 12]
    function: (identifier) ; [0, 0] - [0, 3]
    arguments: (arguments ; [0, 3] - [0, 12]
      (ascription_expression ; [0, 4] - [0, 11]
        (identifier) ; [0, 4] - [0, 8]
        (repeated_parameter_type ; [0, 9] - [0, 11]
          type: (wildcard)))))) ; [0, 9] - [0, 10]

Where are you experiencing this error?

nvim-treesitter

@susliko susliko added bug Something isn't working good first issue Good for newcomers area/scala3 Scala 3 syntax labels Jan 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/scala3 Scala 3 syntax bug Something isn't working good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant