mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
fix: Remap float parts as integers when parsed as indices
This commit is contained in:
parent
81b3e6d124
commit
dbb066b99e
2 changed files with 5 additions and 5 deletions
|
@ -323,8 +323,8 @@ fn name_ref_or_index(p: &mut Parser) {
|
|||
p.at(IDENT) || p.at(INT_NUMBER) || p.at(FLOAT_NUMBER_PART) || p.at_ts(FLOAT_LITERAL_FIRST)
|
||||
);
|
||||
let m = p.start();
|
||||
if p.at_ts(FLOAT_LITERAL_FIRST) {
|
||||
p.bump_remap(FLOAT_NUMBER_PART);
|
||||
if p.at(FLOAT_NUMBER_PART) || p.at_ts(FLOAT_LITERAL_FIRST) {
|
||||
p.bump_remap(INT_NUMBER);
|
||||
} else {
|
||||
p.bump_any();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue