60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
|
package stmt
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
|
||
|
"github.com/z7zmey/php-parser/node"
|
||
|
"github.com/z7zmey/php-parser/token"
|
||
|
)
|
||
|
|
||
|
type For struct {
|
||
|
node.SimpleNode
|
||
|
token token.Token
|
||
|
init []node.Node
|
||
|
cond []node.Node
|
||
|
loop []node.Node
|
||
|
stmt node.Node
|
||
|
}
|
||
|
|
||
|
func NewFor(token token.Token, init []node.Node, cond []node.Node, loop []node.Node, stmt node.Node) node.Node {
|
||
|
return For{
|
||
|
node.SimpleNode{Name: "For", Attributes: make(map[string]string)},
|
||
|
token,
|
||
|
init,
|
||
|
cond,
|
||
|
loop,
|
||
|
stmt,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (n For) Print(out io.Writer, indent string) {
|
||
|
fmt.Fprintf(out, "\n%v%v [%d %d] %q", indent, n.Name, n.token.StartLine, n.token.EndLine, n.token.Value)
|
||
|
|
||
|
if n.init != nil {
|
||
|
fmt.Fprintf(out, "\n%vinit:", indent+" ")
|
||
|
for _, nn := range n.init {
|
||
|
nn.Print(out, indent+" ")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if n.cond != nil {
|
||
|
fmt.Fprintf(out, "\n%vcond:", indent+" ")
|
||
|
for _, nn := range n.cond {
|
||
|
nn.Print(out, indent+" ")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if n.loop != nil {
|
||
|
fmt.Fprintf(out, "\n%vloop:", indent+" ")
|
||
|
for _, nn := range n.loop {
|
||
|
nn.Print(out, indent+" ")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if n.stmt != nil {
|
||
|
fmt.Fprintf(out, "\n%vstmt:", indent+" ")
|
||
|
n.stmt.Print(out, indent+" ")
|
||
|
}
|
||
|
}
|