Lines Matching defs:next
29 check_result(g.next(), 1, false)
30 check_result(g.next(), 2, false)
31 check_result(g.next(), 3, false)
32 check_result(g.next(), 4, false)
33 check_result(g.next(), 5, false)
34 check_result(g.next(), undefined, true)
42 g.next()
67 check_result(g.next(), 5, false)
76 function next(arg)
94 var o = { [Symbol.iterator]() { return { next } } }
100 check_result(g.next(-2), 2, false)
101 check_result(g.next(-3), 3, false)
102 check_result(g.next(-4), 5, true)
120 check_result(g.next(), 1, false)