()
| 84 | } |
| 85 | |
| 86 | Row(): Value[] { |
| 87 | const row: Value[] = []; |
| 88 | while (true) { |
| 89 | row.push(this.Value()); |
| 90 | if (this.Comma()) { |
| 91 | continue; |
| 92 | } |
| 93 | if (this.LineBreak() || this.EOF()) { |
| 94 | return row; |
| 95 | } else { |
| 96 | row.pop(); |
| 97 | return row; |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | private Value(): Value { |
| 103 | const residue = this.Residue(); |