aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar.ron
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2019-11-18 18:13:56 +0000
committerDJMcNab <[email protected]>2019-11-18 18:13:56 +0000
commit27ce1e822b9b5e498aec8ce9efd8efc7c5a80b5f (patch)
treea9ffb6963ac491bd8a6bd6114591510104ad07de /crates/ra_syntax/src/grammar.ron
parent7614439033bc8b68d3982d93595161ddfda80837 (diff)
Remove the custom impl of AttrsOwner for ImplItem
The default impl should have the same behaviour, and it can be generated by codegen. See also `ModuleItem` and `NominalDef`
Diffstat (limited to 'crates/ra_syntax/src/grammar.ron')
-rw-r--r--crates/ra_syntax/src/grammar.ron3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron
index 0a8fd0612..70d85a8e6 100644
--- a/crates/ra_syntax/src/grammar.ron
+++ b/crates/ra_syntax/src/grammar.ron
@@ -401,7 +401,8 @@ Grammar(
401 traits: ["AttrsOwner"] 401 traits: ["AttrsOwner"]
402 ), 402 ),
403 "ImplItem": ( 403 "ImplItem": (
404 enum: ["FnDef", "TypeAliasDef", "ConstDef"] 404 enum: ["FnDef", "TypeAliasDef", "ConstDef"],
405 traits: ["AttrsOwner"]
405 ), 406 ),
406 407
407 "TupleExpr": ( 408 "TupleExpr": (