()
| 1920 | } |
| 1921 | |
| 1922 | private _parseTestListWithComprehension(): ExpressionListResult { |
| 1923 | let sawComprehension = false; |
| 1924 | |
| 1925 | return this._parseExpressionListGeneric(() => { |
| 1926 | let expr = this._parseTestOrStarExpression(); |
| 1927 | let listComp = this._tryParseListComprehension(expr); |
| 1928 | if (listComp) { |
| 1929 | expr = listComp; |
| 1930 | sawComprehension = true; |
| 1931 | } |
| 1932 | return expr; |
| 1933 | }, |
| 1934 | () => this._isNextTokenNeverExpression(), |
| 1935 | () => sawComprehension); |
| 1936 | } |
| 1937 | |
| 1938 | // '{' [dictorsetmaker] '}' |
| 1939 | // dictorsetmaker: ( |
no test coverage detected