mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
Shell: Parse '\t' in doublequoted strings as a tab character
This not being recognised is surprising.
This commit is contained in:
parent
417910fd28
commit
b1fe5d5517
3 changed files with 5 additions and 2 deletions
|
@ -1345,6 +1345,9 @@ RefPtr<AST::Node> Parser::parse_doublequoted_string_inner()
|
|||
case 'n':
|
||||
builder.append('\n');
|
||||
break;
|
||||
case 't':
|
||||
builder.append('\t');
|
||||
break;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue