MCPcopy Create free account
hub / github.com/astral-sh/ruff / bump_complex

Method bump_complex

crates/ruff_python_parser/src/parser/mod.rs:495–501  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

493 }
494
495 fn bump_complex(&mut self) -> (f64, f64) {
496 let text = self.current_token_text();
497 let value = f64::from_str(&strip_underscores(&text[..text.len() - 1]))
498 .expect("lexer validated complex literal");
499 self.bump(TokenKind::Complex);
500 (0.0, value)
501 }
502
503 fn bump_string_value(&mut self) -> &'src str {
504 let range = self.current_token_range();

Callers 2

parse_atomMethod · 0.80

Calls 5

strip_underscoresFunction · 0.85
current_token_textMethod · 0.80
expectMethod · 0.80
lenMethod · 0.45
bumpMethod · 0.45

Tested by

no test coverage detected