aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
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"