(infixRules, tokens)
| 14966 | } |
| 14967 | |
| 14968 | function apply(infixRules, tokens) { |
| 14969 | var leftResult = prefixRule(tokens); |
| 14970 | if (leftResult.isSuccess()) { |
| 14971 | return infixRules.apply(leftResult); |
| 14972 | } else { |
| 14973 | return leftResult; |
| 14974 | } |
| 14975 | } |
| 14976 | |
| 14977 | return self; |
| 14978 | }; |
nothing calls this directly
no test coverage detected