diff options
author | Florian Diebold <[email protected]> | 2019-02-16 22:05:57 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-02-16 22:06:41 +0000 |
commit | a1bda3fc084bb6aa4979282b4907db9885fac9af (patch) | |
tree | de0f6864caba195ac3a0e463ab7a49e5adc66e8f /crates/ra_syntax/src/ast | |
parent | 65bd9bc3a800e09f52a315cf98e86c120c366c2c (diff) |
Handle generic args for method calls
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/generated.rs | 4 |
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 aa9da92da..dd91b5063 100644 --- a/crates/ra_syntax/src/ast/generated.rs +++ b/crates/ra_syntax/src/ast/generated.rs | |||
@@ -2095,6 +2095,10 @@ impl MethodCallExpr { | |||
2095 | pub fn name_ref(&self) -> Option<&NameRef> { | 2095 | pub fn name_ref(&self) -> Option<&NameRef> { |
2096 | super::child_opt(self) | 2096 | super::child_opt(self) |
2097 | } | 2097 | } |
2098 | |||
2099 | pub fn type_arg_list(&self) -> Option<&TypeArgList> { | ||
2100 | super::child_opt(self) | ||
2101 | } | ||
2098 | } | 2102 | } |
2099 | 2103 | ||
2100 | // Module | 2104 | // Module |