mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-10 07:00:08 +00:00
20 lines
306 B
Go
20 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
|
|
}
|