()
| 100 | } |
| 101 | |
| 102 | private Value(): Value { |
| 103 | const residue = this.Residue(); |
| 104 | const quotedvalue = this.QuotedValue(); |
| 105 | if (quotedvalue) { |
| 106 | const value = quotedvalue |
| 107 | .slice(1, -1) |
| 108 | .replace(this._replaceQuoteRegExp, this.quote); |
| 109 | this.Residue(); |
| 110 | return value; |
| 111 | } |
| 112 | const simplevalue = this.SimpleValue(); |
| 113 | if (simplevalue) { |
| 114 | return residue ? residue + simplevalue : simplevalue; |
| 115 | } |
| 116 | return ''; |
| 117 | } |
| 118 | |
| 119 | private Comma(): Comma | undefined { |
| 120 | if ( |
no test coverage detected