37 lines
640 B
Go
37 lines
640 B
Go
package stmt
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
"github.com/z7zmey/php-parser/token"
|
|
)
|
|
|
|
func(n StaticVar) Name() string {
|
|
return "StaticVar"
|
|
}
|
|
|
|
type StaticVar struct {
|
|
name string
|
|
token token.Token
|
|
expr node.Node
|
|
}
|
|
|
|
func NewStaticVar(token token.Token, expr node.Node) node.Node {
|
|
return StaticVar{
|
|
"StaticVar",
|
|
token,
|
|
expr,
|
|
}
|
|
}
|
|
|
|
func (n StaticVar) 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.expr != nil {
|
|
fmt.Fprintf(out, "\n%vexpr:", indent+" ")
|
|
n.expr.Print(out, indent+" ")
|
|
}
|
|
}
|