aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/reparsing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/reparsing.rs')
-rw-r--r--crates/ra_syntax/src/reparsing.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/reparsing.rs b/crates/ra_syntax/src/reparsing.rs
index dcafd2c40..d8b6a6a10 100644
--- a/crates/ra_syntax/src/reparsing.rs
+++ b/crates/ra_syntax/src/reparsing.rs
@@ -84,7 +84,8 @@ fn reparse_block<'node>(
84 return None; 84 return None;
85 } 85 }
86 let (green, new_errors) = 86 let (green, new_errors) =
87 parser_impl::parse_with::<yellow::GreenBuilder>( 87 parser_impl::parse_with(
88 yellow::GreenBuilder::new(),
88 &text, &tokens, reparser, 89 &text, &tokens, reparser,
89 ); 90 );
90 Some((node, green, new_errors)) 91 Some((node, green, new_errors))