The root document
| 2 | |
| 3 | // The root document |
| 4 | type nodeDocument struct { |
| 5 | Nodes []INode |
| 6 | } |
| 7 | |
| 8 | func (doc *nodeDocument) Execute(ctx *ExecutionContext, writer TemplateWriter) *Error { |
| 9 | for _, n := range doc.Nodes { |
nothing calls this directly
no outgoing calls
no test coverage detected