Skip to content
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