aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-31 19:04:40 +0100
committerAleksey Kladov <[email protected]>2020-07-31 19:04:40 +0100
commitd7f75db90d99216c13000681ff2c4a887451c4b2 (patch)
tree5e5a61ed573a41ed6cddddc1a676676d2d70180b /crates/ra_syntax
parent14cb96ec0e6be3b99bfe4ea373c058dcbd2a4f79 (diff)
Reorder
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r--crates/ra_syntax/src/ast/generated/nodes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs
index 7708ae806..713aebcfa 100644
--- a/crates/ra_syntax/src/ast/generated/nodes.rs
+++ b/crates/ra_syntax/src/ast/generated/nodes.rs
@@ -1128,7 +1128,7 @@ pub struct BoxPat {
1128} 1128}
1129impl BoxPat { 1129impl BoxPat {
1130 pub fn box_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![box]) } 1130 pub fn box_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![box]) }
1131 pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } 1131 pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) }
1132} 1132}
1133#[derive(Debug, Clone, PartialEq, Eq, Hash)] 1133#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1134pub struct DotDotPat { 1134pub struct DotDotPat {