Skip to content

Commit

Permalink
fix: recursive let defn
Browse files Browse the repository at this point in the history
  • Loading branch information
Nsidorenco committed Apr 23, 2024
1 parent 7696a57 commit 2000dae
Show file tree
Hide file tree
Showing 5 changed files with 285,736 additions and 285,572 deletions.
2 changes: 1 addition & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ module.exports = grammar({
)),

_function_or_value_defns: $ =>
seq($._function_or_value_defn_body, repeat1(seq('and', $._function_or_value_defn_body))),
seq($._function_or_value_defn_body, repeat(seq('and', $._function_or_value_defn_body))),

function_or_value_defn: $ =>
seq(
Expand Down
2 changes: 1 addition & 1 deletion src/grammar.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2000dae

Please sign in to comment.