(parser, tokens)
| 15170 | |
| 15171 | exports.Parser = function(options) { |
| 15172 | var parseTokens = function(parser, tokens) { |
| 15173 | return parser(new TokenIterator(tokens)); |
| 15174 | }; |
| 15175 | |
| 15176 | return { |
| 15177 | parseTokens: parseTokens |
nothing calls this directly
no outgoing calls
no test coverage detected