(node)
| 640 | it('should receive all the nodes', function () { |
| 641 | var list = []; |
| 642 | function collect(node) { |
| 643 | list.push(node.type); |
| 644 | } |
| 645 | esprima.parse('/* universe */ answer = 42', {}, collect); |
| 646 | |
| 647 | assert.deepEqual(list.length, 5); |
nothing calls this directly
no test coverage detected
searching dependent graphs…