php-parser/node/expr/post_inc.go

34 lines
524 B
Go
Raw Normal View History

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