mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-10 07:00:08 +00:00
17 lines
287 B
Go
17 lines
287 B
Go
|
package pongo2
|
||
|
|
||
|
type NodeWrapper struct {
|
||
|
Endtag string
|
||
|
nodes []INode
|
||
|
}
|
||
|
|
||
|
func (wrapper *NodeWrapper) Execute(ctx *ExecutionContext, writer TemplateWriter) *Error {
|
||
|
for _, n := range wrapper.nodes {
|
||
|
err := n.Execute(ctx, writer)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|