diff options
author | Aleksey Kladov <[email protected]> | 2019-11-19 18:13:36 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-11-19 18:13:36 +0000 |
commit | 83a8430e0a4f4c88e45a017a2212c981b42a4a7a (patch) | |
tree | 8a20a180f32e1fd9f1f48f1c92a1146c5bd7efcf /crates/ra_syntax/src/ast | |
parent | 545c21923e2bc8daee889b26919256bb2ba55282 (diff) |
:arrow_up: rowan
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/extensions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/extensions.rs b/crates/ra_syntax/src/ast/extensions.rs index 761b2435c..4851dacb2 100644 --- a/crates/ra_syntax/src/ast/extensions.rs +++ b/crates/ra_syntax/src/ast/extensions.rs | |||
@@ -32,7 +32,7 @@ impl ast::NameRef { | |||
32 | } | 32 | } |
33 | 33 | ||
34 | fn text_of_first_token(node: &SyntaxNode) -> &SmolStr { | 34 | fn text_of_first_token(node: &SyntaxNode) -> &SmolStr { |
35 | node.green().children().first().and_then(|it| it.as_token()).unwrap().text() | 35 | node.green().children().next().and_then(|it| it.into_token()).unwrap().text() |
36 | } | 36 | } |
37 | 37 | ||
38 | impl ast::Attr { | 38 | impl ast::Attr { |