()
| 34 | } |
| 35 | |
| 36 | parseQuotedString(): string { |
| 37 | if (this.tryParse('"')) { |
| 38 | return this.parseUntilCharCode(CharCode.doubleQuote); |
| 39 | } else { |
| 40 | this.parse("'"); |
| 41 | return this.parseUntilCharCode(CharCode.singleQuote); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | parseUntilCharCode(charCode: number): string { |
| 46 | let startPosition = this.position; |
no test coverage detected