php-parser/node/expr/const_fetch.go

34 lines
533 B
Go
Raw Normal View History

2017-12-16 21:07:21 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n ConstFetch) Name() string {
return "ConstFetch"
}
2017-12-16 21:07:21 +00:00
type ConstFetch struct {
2017-12-27 17:55:58 +00:00
name string
constant node.Node
2017-12-16 21:07:21 +00:00
}
2017-12-27 17:55:58 +00:00
func NewConstFetch(constant node.Node) node.Node {
2017-12-16 21:07:21 +00:00
return ConstFetch{
2017-12-27 17:55:58 +00:00
"ConstFetch",
constant,
2017-12-16 21:07:21 +00:00
}
}
func (n ConstFetch) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
2017-12-16 21:07:21 +00:00
2017-12-27 17:55:58 +00:00
if n.constant != nil {
fmt.Fprintf(out, "\n%vconstant:", indent+" ")
n.constant.Print(out, indent+" ")
2017-12-16 21:07:21 +00:00
}
}