(s)
| 715 | } |
| 716 | |
| 717 | function literal (s) { |
| 718 | for (const c of s) { |
| 719 | const p = peek() |
| 720 | |
| 721 | if (p !== c) { |
| 722 | throw invalidChar(read()) |
| 723 | } |
| 724 | |
| 725 | read() |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | function escape () { |
| 730 | const c = peek() |
no test coverage detected
searching dependent graphs…