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