aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-11 07:38:27 +0100
committerAleksey Kladov <[email protected]>2018-08-11 07:38:27 +0100
commit7581984601b35c113c4bcdf0f8b402b2635be0dc (patch)
tree08d21e6af90e57fd739c4f24dc221e0466375a1d /crates/libsyntax2/src/grammar.ron
parent35b59bb43877c496fbaf98520b3b52ff9a6518b1 (diff)
bump ron
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron10
1 files changed, 8 insertions, 2 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index bcc79843a..9ad2c2ec1 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -215,10 +215,16 @@ Grammar(
215 ], 215 ],
216 ast: [ 216 ast: [
217 ( 217 (
218 kind: "FILE" 218 kind: "FILE",
219 collections: [
220 ("functions", "FUNCTION")
221 ]
219 ), 222 ),
220 ( 223 (
221 kind: "FUNCTION" 224 kind: "FUNCTION",
225 options: [
226 ("name", "NAME")
227 ]
222 ), 228 ),
223 ( 229 (
224 kind: "NAME" 230 kind: "NAME"