File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ TS=yarn tree-sitter
88wild_github_repos := rescript-lang/rescript-react \
99 rescript-association/rescript-lang.org \
1010 tinymce/rescript-webapi \
11- cca-io/rescript-material-ui
11+ cca-io/rescript-material-ui \
12+ rescript-association/reanalyze
1213
1314wild_sandboxes := $(patsubst % ,test_wild/% ,$(wild_github_repos ) )
1415
Original file line number Diff line number Diff line change @@ -468,7 +468,7 @@ module.exports = grammar({
468468 '=' ,
469469 repeat ( $ . decorator ) ,
470470 $ . expression ,
471- repeat ( alias ( $ . _let_binding_and , $ . let_binding ) ) ,
471+ optional ( alias ( $ . _let_binding_and , $ . let_binding ) ) ,
472472 ) ) ,
473473 ) ,
474474
Original file line number Diff line number Diff line change @@ -257,11 +257,11 @@ and b = c
257257 (decorator (decorator_identifier))
258258 (decorator (decorator_identifier))
259259 (value_identifier)
260- (value_identifier))
261- (let_binding
262- (decorator (decorator_identifier))
263260 (value_identifier)
264- (number)))))
261+ (let_binding
262+ (decorator (decorator_identifier))
263+ (value_identifier)
264+ (number))))))
265265
266266===========================================
267267Labled function with uncurried
You can’t perform that action at this time.
0 commit comments