php-parser/node/expr/array_dim_fetch.go

41 lines
697 B
Go
Raw Normal View History

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