diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-16 20:01:30 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-16 20:01:30 +0100 |
commit | a4cda3efbbabe4c6129de4dc095953fe858d7d3f (patch) | |
tree | 13f7ec5be79c30c073475eef0d614435bc0d133a /crates/ra_syntax/src/algo.rs | |
parent | fc0a47a0c19a1b58a586e30645cec4d80d700513 (diff) | |
parent | cae2498513601c507bb10b15710feb800a24517f (diff) |
Merge #3994
3994: Don't expose SyntaxNodePtr impl details r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/algo.rs')
-rw-r--r-- | crates/ra_syntax/src/algo.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/algo.rs b/crates/ra_syntax/src/algo.rs index 7f87f4212..ea41bf85d 100644 --- a/crates/ra_syntax/src/algo.rs +++ b/crates/ra_syntax/src/algo.rs | |||
@@ -351,7 +351,7 @@ fn with_children( | |||
351 | // FIXME: use a more elegant way to re-fetch the node (#1185), make | 351 | // FIXME: use a more elegant way to re-fetch the node (#1185), make |
352 | // `range` private afterwards | 352 | // `range` private afterwards |
353 | let mut ptr = SyntaxNodePtr::new(parent); | 353 | let mut ptr = SyntaxNodePtr::new(parent); |
354 | ptr.range = TextRange::offset_len(ptr.range().start(), len); | 354 | ptr.range = TextRange::offset_len(ptr.range.start(), len); |
355 | ptr.to_node(&new_root_node) | 355 | ptr.to_node(&new_root_node) |
356 | } | 356 | } |
357 | 357 | ||