mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
fix MultilineStringEnd error
This commit is contained in:
parent
1d1837d239
commit
159d75283b
1 changed files with 1 additions and 0 deletions
|
|
@ -2315,6 +2315,7 @@ pub fn parseMultiLineStringExpr(self: *Parser) Error!AST.Expr.Idx {
|
|||
while (self.peek() != .EndOfFile) {
|
||||
switch (self.peek()) {
|
||||
.MultilineStringEnd => {
|
||||
self.advance();
|
||||
break;
|
||||
},
|
||||
.MultilineStringStart => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue