(noComma)
| 34457 | return pass(type == "{" ? statement : expressionNoComma); |
| 34458 | } |
| 34459 | function maybeTarget(noComma) { |
| 34460 | return function(type) { |
| 34461 | if (type == ".") return cont(noComma ? targetNoComma : target); |
| 34462 | else if (type == "variable" && isTS) return cont(maybeTypeArgs, noComma ? maybeoperatorNoComma : maybeoperatorComma) |
| 34463 | else return pass(noComma ? expressionNoComma : expression); |
| 34464 | }; |
| 34465 | } |
| 34466 | function target(_, value) { |
| 34467 | if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); } |
| 34468 | } |
no test coverage detected