aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/generated.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-24 16:37:25 +0100
committerAleksey Kladov <[email protected]>2018-10-24 16:37:25 +0100
commit69d07df201307fb7c539cdb20b8f1c1c12840386 (patch)
tree08cccd64582510ce2c82ceec729504a80e33f5b1 /crates/ra_syntax/src/ast/generated.rs
parent9a7db8fa009c612168ef16f6ed72315b5406ed09 (diff)
Complete crate:: paths
Diffstat (limited to 'crates/ra_syntax/src/ast/generated.rs')
-rw-r--r--crates/ra_syntax/src/ast/generated.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs
index 98c7de361..096405a38 100644
--- a/crates/ra_syntax/src/ast/generated.rs
+++ b/crates/ra_syntax/src/ast/generated.rs
@@ -1371,6 +1371,10 @@ impl<'a> Path<'a> {
1371 pub fn segment(self) -> Option<PathSegment<'a>> { 1371 pub fn segment(self) -> Option<PathSegment<'a>> {
1372 super::child_opt(self) 1372 super::child_opt(self)
1373 } 1373 }
1374
1375 pub fn qualifier(self) -> Option<Path<'a>> {
1376 super::child_opt(self)
1377 }
1374} 1378}
1375 1379
1376// PathExpr 1380// PathExpr