Node that represents a template. This must be the outermost node that is passed to the compiler.
| 292 | |
| 293 | |
| 294 | class Template(Node): |
| 295 | """Node that represents a template. This must be the outermost node that |
| 296 | is passed to the compiler. |
| 297 | """ |
| 298 | |
| 299 | fields = ("body",) |
| 300 | body: t.List[Node] |
| 301 | |
| 302 | |
| 303 | class Output(Stmt): |
no outgoing calls