| 78 | } |
| 79 | |
| 80 | void ParseString() |
| 81 | { |
| 82 | this->String = ""; |
| 83 | if (!this->Expect('"')) { |
| 84 | return; |
| 85 | } |
| 86 | while (!this->Expect('"')) { |
| 87 | this->Expect('\\'); |
| 88 | this->String.append(1, this->C); |
| 89 | this->Next(); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | bool Expect(char c) |
| 94 | { |