MCPcopy Index your code
hub / github.com/nodejs/node / __next__

Method __next__

tools/inspector_protocol/jinja2/runtime.py:471–479  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

469 return self
470
471 def __next__(self):
472 ctx = self.context
473 ctx.index0 += 1
474 if ctx._after is _last_iteration:
475 raise StopIteration()
476 ctx._before = ctx._current
477 ctx._current = ctx._after
478 ctx._after = ctx._safe_next()
479 return ctx._current, ctx
480
481
482class Macro(object):

Callers

nothing calls this directly

Calls 1

_safe_nextMethod · 0.80

Tested by

no test coverage detected