php-parser/node/expr/isset.go

36 lines
540 B
Go
Raw Normal View History

2017-12-17 21:21:46 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n Isset) Name() string {
return "Isset"
}
2017-12-17 21:21:46 +00:00
type Isset struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-17 21:21:46 +00:00
variables []node.Node
}
func NewIsset(variables []node.Node) node.Node {
return Isset{
2017-12-27 17:55:58 +00:00
"Isset",
2017-12-17 21:21:46 +00:00
variables,
}
}
func (n Isset) 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-17 21:21:46 +00:00
if n.variables != nil {
fmt.Fprintf(out, "\n%vvariables:", indent+" ")
for _, nn := range n.variables {
nn.Print(out, indent+" ")
}
}
}