mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Fix single-quote dollar parsing
This commit is contained in:
parent
79ed84fff3
commit
443b3c8851
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ pub fn parse_str_like_literal<'a>() -> impl Parser<'a, StrLikeLiteral<'a>, EStri
|
|||
return Err((MadeProgress, EString::EndlessSingleLine(start_state.pos())));
|
||||
}
|
||||
}
|
||||
b'$' => {
|
||||
b'$' if !is_single_quote => {
|
||||
// This is for the byte we're about to parse.
|
||||
segment_parsed_bytes += 1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue