Skip to content

Multi-line parameter lists #295

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

Merged
merged 1 commit into from
Jun 9, 2023

Conversation

susliko
Copy link
Collaborator

@susliko susliko commented Jun 9, 2023

Fixes #257

Problem

Parameter lists spreading multiple lines are not handled:

class A
():
  def b
    (): Int = 1

Solution

Match $._automatic_semicolon in $._function_constructor and $.class_parameters

Side-change: reuse $._function_declaration in $.function_definition

Problem
-------
Parameter lists spreading multiple lines are not handled:
```
class A
():
  def b
    (): Int = 1
```

Solution
-------
Match `$._automatic_semicolon` in `$._function_constructor` and
`$.class_parameters`

Side-change: reuse `$._function_declaration` in `$.function_definition`
Copy link
Collaborator

@eed3si9n eed3si9n left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. Thanks @susliko!

@eed3si9n eed3si9n merged commit b2dd83f into tree-sitter:master Jun 9, 2023
@susliko
Copy link
Collaborator Author

susliko commented Jun 9, 2023

@eed3si9n wow, so fast! 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Definitions with multiple param lists on different lines
2 participants