diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-16 13:43:21 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-16 13:43:21 +0100 |
commit | ba583091e60553633dd3cc9ab37a1d9f64827a1e (patch) | |
tree | 41a9b72f46b1119ff32964f77365459fdb46a37d /crates/ra_syntax/src/ast | |
parent | 6b33b90091b0cecd4c092d34451aba9f2492063c (diff) | |
parent | 7ed3be32916facf3b709d5277381408cd3ec134a (diff) |
Merge #1817
1817: Support path starting with a type r=matklad a=uHOOCCOOHu
The path syntax `<Ty>::foo`
Co-authored-by: uHOOCCOOHu <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/generated.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs index 591ac8ca3..dc1f8c82c 100644 --- a/crates/ra_syntax/src/ast/generated.rs +++ b/crates/ra_syntax/src/ast/generated.rs | |||
@@ -2385,6 +2385,9 @@ impl PathSegment { | |||
2385 | pub fn ret_type(&self) -> Option<RetType> { | 2385 | pub fn ret_type(&self) -> Option<RetType> { |
2386 | AstChildren::new(&self.syntax).next() | 2386 | AstChildren::new(&self.syntax).next() |
2387 | } | 2387 | } |
2388 | pub fn path_type(&self) -> Option<PathType> { | ||
2389 | AstChildren::new(&self.syntax).next() | ||
2390 | } | ||
2388 | } | 2391 | } |
2389 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2392 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2390 | pub struct PathType { | 2393 | pub struct PathType { |