(errorString: string)
| 1256 | } |
| 1257 | |
| 1258 | private _parseTestListAsExpression(errorString: string): ExpressionNode { |
| 1259 | if (this._isNextTokenNeverExpression()) { |
| 1260 | return this._handleExpressionParseError(errorString); |
| 1261 | } |
| 1262 | |
| 1263 | let exprListResult = this._parseTestExpressionList(); |
| 1264 | if (exprListResult.parseError) { |
| 1265 | return exprListResult.parseError; |
| 1266 | } |
| 1267 | return this._makeExpressionOrTuple(exprListResult); |
| 1268 | } |
| 1269 | |
| 1270 | private _parseTestOrStarListAsExpression(): ExpressionNode { |
| 1271 | if (this._isNextTokenNeverExpression()) { |
no test coverage detected