aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-11 07:55:32 +0100
committerAleksey Kladov <[email protected]>2018-08-11 07:55:32 +0100
commitb18d2882f4f05078abfcf0595d08c226860de6c3 (patch)
tree247e87f3f8e03cec063d29dd6223e7727dadadb4 /crates/libsyntax2/src/grammar.ron
parent7581984601b35c113c4bcdf0f8b402b2635be0dc (diff)
Generate accessors
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index 9ad2c2ec1..22c61e949 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -217,13 +217,13 @@ Grammar(
217 ( 217 (
218 kind: "FILE", 218 kind: "FILE",
219 collections: [ 219 collections: [
220 ("functions", "FUNCTION") 220 ["functions", "FUNCTION"]
221 ] 221 ]
222 ), 222 ),
223 ( 223 (
224 kind: "FUNCTION", 224 kind: "FUNCTION",
225 options: [ 225 options: [
226 ("name", "NAME") 226 ["name", "NAME"]
227 ] 227 ]
228 ), 228 ),
229 ( 229 (