0 | pass | pass | Unquoted backslash escapes, as in J8 strings |
1 | pass | pass | Unquoted \u{3bc} escape |
2 | pass | pass | Unquoted \y24 escape |
3 | pass | pass | single quoted -- implicit and explicit raw |
4 | pass | pass | Implicit raw single quote with backslash is a syntax error |
5 | pass | pass | $"foo $x" to make "foo $x" explicit |
6 | pass | pass | single quoted C strings: $'foo\n' |
7 | pass | pass | raw strings and J8 strings don't work in OSH |
8 | pass | pass | J8-style u'' and b'' strings in expression mode |
9 | pass | pass | J8-style u'' and b'' strings in command mode |
10 | pass | pass | J8-style multi-line strings u''' b''' in command mode |
11 | pass | pass | Double Quoted |
12 | pass | pass | Multiline strings with '' and "" |
13 | pass | pass | C strings in %() array literals |
14 | pass | pass | shopt parse_ysh_string |
15 | pass | pass | $''' isn't a a multiline string (removed) |
16 | pass | pass | """ and $""" in Expression Mode |
17 | pass | pass | ''' in Expression Mode |
18 | pass | pass | """ and $""" in Command Mode |
19 | pass | pass | ''' in Command Mode |
20 | pass | pass | r''' in Command Mode, Expression mode |
21 | pass | pass | ''' in Here Doc |
22 | pass | pass | ''' without parse_triple_quote |
23 | pass | pass | here doc with quotes |
24 | pass | pass | triple quoted and implicit concatenation |