We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39720a2 commit da44f65Copy full SHA for da44f65
grammar.js
@@ -468,7 +468,7 @@ module.exports = grammar({
468
'=',
469
repeat($.decorator),
470
$.expression,
471
- repeat(alias($._let_binding_and, $.let_binding)),
+ optional(alias($._let_binding_and, $.let_binding)),
472
)),
473
),
474
test/corpus/let_bindings.txt
@@ -257,11 +257,11 @@ and b = c
257
(decorator (decorator_identifier))
258
259
(value_identifier)
260
- (value_identifier))
+ (value_identifier)
261
(let_binding
262
263
264
- (number)))))
+ (number))))))
265
266
===========================================
267
Labled function with uncurried
0 commit comments