Skip to content

Commit

Permalink
Changed it so that pat is its own sort
Browse files Browse the repository at this point in the history
  • Loading branch information
green726 committed Aug 6, 2024
1 parent 5f1ea68 commit 3810b39
Show file tree
Hide file tree
Showing 2 changed files with 299 additions and 32 deletions.
21 changes: 21 additions & 0 deletions blank
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

member_exp = ...
lhs_exp = atom => member_exp, ...
pat = atom => lhs_exp, ...
destructuring_pat => atom = ...



/*
Pat = {
destructuring_pat = alt([object_pat, array_pat, lhs_exp])
}
*/

Stat = {

for_header = {
...
destructuring_pat
}
}
Loading

0 comments on commit 3810b39

Please sign in to comment.