Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse multiline expressions in f-strings #1027

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions native/libcst/src/tokenizer/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,8 @@ impl<'t> TokState<'t> {
self.text_pos.next();
self.at_bol = true;
if self.split_fstring
&& !self.fstring_stack.iter().all(|node| node.allow_multiline())
&& self.fstring_stack.last().map(|node| node.allow_multiline())
== Some(false)
{
Err(TokError::UnterminatedString)
} else if self.blank_line || !self.paren_stack.is_empty() {
Expand Down Expand Up @@ -895,7 +896,8 @@ impl<'t> TokState<'t> {
is_in_format_spec: bool,
is_raw_string: bool,
) -> Result<Option<TokType>, TokError<'t>> {
let allow_multiline = self.fstring_stack.iter().all(|node| node.allow_multiline());
let allow_multiline =
self.fstring_stack.last().map(|node| node.allow_multiline()) == Some(true);
let mut in_named_unicode: bool = false;
let mut ok_result = Ok(None); // value to return if we reach the end and don't error out
'outer: loop {
Expand Down
2 changes: 1 addition & 1 deletion native/libcst/src/tokenizer/core/string_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl FStringNode {
}

pub fn allow_multiline(&self) -> bool {
self.quote_size == StringQuoteSize::Triple
self.quote_size == StringQuoteSize::Triple || self.is_in_expr()
}

pub fn is_in_expr(&self) -> bool {
Expand Down
11 changes: 10 additions & 1 deletion native/libcst/tests/fixtures/super_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@

print(f"{self.ERASE_CURRENT_LINE}{self._human_seconds(elapsed_time)} {percent:.{self.pretty_precision}f}% complete, {self.estimate_completion(elapsed_time, finished, left)} estimated for {left} files to go...")

f"{"\n".join()}"

f"___{
x
}___"

f"___{(
x
)}___"

f'\{{\}}'
f"regexp_like(path, '.*\{file_type}$')"
f"\lfoo"
Expand All @@ -38,4 +48,3 @@
f"{'':*^{1:{1}}}"
f"{'':*^{1:{1:{1}}}}"
f"{f"{f"{f"{f"{f"{1+1}"}"}"}"}"}"

Loading