35 lines
693 B
Go
35 lines
693 B
Go
package stmt
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
"github.com/z7zmey/php-parser/token"
|
|
)
|
|
|
|
type StmtConst struct {
|
|
node.SimpleNode
|
|
token token.Token
|
|
consts []node.Node
|
|
}
|
|
|
|
func NewStmtConst(token token.Token, consts []node.Node) node.Node {
|
|
return StmtConst{
|
|
node.SimpleNode{Name: "StmtConst", Attributes: make(map[string]string)},
|
|
token,
|
|
consts,
|
|
}
|
|
}
|
|
|
|
func (n StmtConst) 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.consts != nil {
|
|
fmt.Fprintf(out, "\n%vconsts:", indent+" ")
|
|
for _, nn := range n.consts {
|
|
nn.Print(out, indent+" ")
|
|
}
|
|
}
|
|
}
|