## Summary This is just a small refactor to remove the `FormatFStringPart` as it's only used in the case when the f-string is not implicitly concatenated in which case the only part is going to be `FString`. In implicitly concatenated f-strings, we use `StringLike` instead.
19 lines
521 B
Rust
19 lines
521 B
Rust
pub(crate) mod alias;
|
|
pub(crate) mod arguments;
|
|
pub(crate) mod bytes_literal;
|
|
pub(crate) mod commas;
|
|
pub(crate) mod comprehension;
|
|
pub(crate) mod decorator;
|
|
pub(crate) mod elif_else_clause;
|
|
pub(crate) mod except_handler_except_handler;
|
|
pub(crate) mod f_string;
|
|
pub(crate) mod f_string_element;
|
|
pub(crate) mod identifier;
|
|
pub(crate) mod keyword;
|
|
pub(crate) mod match_case;
|
|
pub(crate) mod parameter;
|
|
pub(crate) mod parameter_with_default;
|
|
pub(crate) mod parameters;
|
|
pub(crate) mod string_literal;
|
|
pub(crate) mod with_item;
|