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

Add document ArrayPatternNode fields #3250

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -977,16 +977,41 @@ nodes:
- name: requireds
type: node[]
kind: pattern expression
comment: |
Represents the required elements of the array pattern.

foo in [1, 2]
^ ^
- name: rest
type: node?
kind: pattern expression
comment: |
Represents the rest element of the array pattern.

foo in *bar
^^^^
- name: posts
type: node[]
kind: pattern expression
comment: |
Represents the elements after the rest element of the array pattern.

foo in *bar, baz
^^^
- name: opening_loc
type: location?
comment: |
Represents the opening location of the array pattern.

foo in [1, 2]
^
- name: closing_loc
type: location?
comment: |
Represents the closing location of the array pattern.

foo in [1, 2]
^
comment: |
Represents an array pattern in pattern matching.

Expand Down