Skip to content

Commit 6d5e665

Browse files
committed
Support assignment to an implicit object chain
1 parent fca0617 commit 6d5e665

File tree

5 files changed

+405831
-399896
lines changed

5 files changed

+405831
-399896
lines changed

grammar.js

+14
Original file line numberDiff line numberDiff line change
@@ -2026,6 +2026,19 @@ module.exports = grammar({
20262026
)
20272027
},
20282028

2029+
// Assignment to a property of an implicit object
2030+
// `&.foo = a = b`
2031+
implicit_object_assign: $ => {
2032+
const chained_lhs = field('lhs',
2033+
alias($.implicit_call_chainable, $.implicit_object_call),
2034+
)
2035+
const rhs = field('rhs', $._expression)
2036+
2037+
return prec('assignment_operator',
2038+
seq(chained_lhs, '=', rhs),
2039+
)
2040+
},
2041+
20292042
implicit_object_tuple: $ => seq(
20302043
alias($._start_of_hash_or_tuple, '{'),
20312044
optional(seq(
@@ -2462,6 +2475,7 @@ module.exports = grammar({
24622475
choice(
24632476
$._expression,
24642477
$._implicit_object_call,
2478+
$.implicit_object_assign,
24652479
),
24662480
))
24672481
},

src/grammar.json

+47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)