mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
21 lines
307 B
Go
21 lines
307 B
Go
|
package pongo2
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
)
|
||
|
|
||
|
type NodeWrapper struct {
|
||
|
Endtag string
|
||
|
nodes []INode
|
||
|
}
|
||
|
|
||
|
func (wrapper *NodeWrapper) Execute(ctx *ExecutionContext, buffer *bytes.Buffer) *Error {
|
||
|
for _, n := range wrapper.nodes {
|
||
|
err := n.Execute(ctx, buffer)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|