php-parser/node/expr/pre_inc.go

34 lines
517 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 PreInc) Name() string {
return "PreInc"
}
type PreInc struct {
2017-12-27 17:55:58 +00:00
name string
variable node.Node
}
func NewPreInc(variableession node.Node) node.Node {
return PreInc{
2017-12-27 17:55:58 +00:00
"PreInc",
variableession,
}
}
func (n PreInc) 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+" ")
}
}