aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-31 14:30:42 +0100
committerAleksey Kladov <[email protected]>2018-08-31 14:30:42 +0100
commit7a5bc94774a50837f8c9bf8b96c8272882aca640 (patch)
tree7d96566cbbf7bdd636fd095acb6bff12bba1ec13 /crates/libsyntax2/src/grammar.ron
parentcdb9b4cbf417976739de5147938e2c3080e497b9 (diff)
complete self
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index 77730e306..522521229 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -488,10 +488,12 @@ Grammar(
488 ] 488 ]
489 ), 489 ),
490 "ParamList": ( 490 "ParamList": (
491 options: [ "SelfParam" ],
491 collections: [ 492 collections: [
492 ["params", "Param"] 493 ["params", "Param"]
493 ] 494 ]
494 ), 495 ),
496 "SelfParam": (),
495 "Param": ( 497 "Param": (
496 options: [ "Pat" ], 498 options: [ "Pat" ],
497 ), 499 ),