(noComma)
| 455 | return pass(type == "{" ? statement : expressionNoComma); |
| 456 | } |
| 457 | function maybeTarget(noComma) { |
| 458 | return function(type) { |
| 459 | if (type == ".") return cont(noComma ? targetNoComma : target); |
| 460 | else return pass(noComma ? expressionNoComma : expression); |
| 461 | }; |
| 462 | } |
| 463 | function target(_, value) { |
| 464 | if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); } |
| 465 | } |
no test coverage detected