MCPcopy
hub / github.com/tornadoweb/tornado / _ChunkList

Class _ChunkList

tornado/template.py:535–544  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

533
534
535class _ChunkList(_Node):
536 def __init__(self, chunks: List[_Node]) -> None:
537 self.chunks = chunks
538
539 def generate(self, writer: "_CodeWriter") -> None:
540 for chunk in self.chunks:
541 chunk.generate(writer)
542
543 def each_child(self) -> Iterable["_Node"]:
544 return self.chunks
545
546
547class _NamedBlock(_Node):

Callers 1

_parseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…