Removing StringReader::retokenize
#76046
Labels
A-parser
Area: The parsing of Rust source code to an AST
A-save-analysis
Area: saving results of analyses such as inference and borrowck results to a file.
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
StringReader
contains aretokenize
function, which allows to to, well, retokenize existing span:rust/src/librustc_parse/lexer/mod.rs
Lines 73 to 88 in d006f57
There's only caller of this function:
rust/src/librustc_save_analysis/span_utils.rs
Lines 46 to 61 in d006f57
And there's only one caller of that caller:
rust/src/librustc_save_analysis/dump_visitor.rs
Lines 1202 to 1212 in d006f57
In other words, the only reason why we need
StringReader::retokenize
is to get the span of*
fromhir::Use
which happens to be a glob import.(
rls needs to know the span of
*
to implement "replaceuse foo::*
with explicit list of imported items" code action. This was the first demoed code action and is still the only one that is implemented)
I'd like to remove the
retokenize
function, as it is one of the few remaining things that requiresStringReader
to be public, and as it is very much a hack anyway.Additionally, I believe I've broken this function accidently a while ago: 395ee0b#diff-d06ad31c547d2d94c8b8770006977767L69. Rather than retokenizing a span, it retokenized file from the begining until the end of the span (whcih, as uses are usually on top, worked correctly most of the times by accident).
What would be the best way to fix this?
*
span tohir::Use
-- this seem to be the "proper" solution herelibrutc_save_analysis
, just fetch the text of the file and look for*
, usingrustc_lexer
or maybe just.rfind('*')
@petrochenkov @Xanewok WDYT?
The text was updated successfully, but these errors were encountered: