2017-12-16 21:46:24 +00:00
|
|
|
package expr
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
2017-12-27 17:55:58 +00:00
|
|
|
func (n Exit) Name() string {
|
|
|
|
return "Exit"
|
|
|
|
}
|
|
|
|
|
2017-12-16 21:46:24 +00:00
|
|
|
type Exit struct {
|
2017-12-27 17:55:58 +00:00
|
|
|
name string
|
2017-12-16 21:46:24 +00:00
|
|
|
expr node.Node
|
|
|
|
isDie bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewExit(expr node.Node, isDie bool) node.Node {
|
|
|
|
return Exit{
|
2017-12-27 17:55:58 +00:00
|
|
|
"Exit",
|
2017-12-16 21:46:24 +00:00
|
|
|
expr,
|
|
|
|
isDie,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n Exit) 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:46:24 +00:00
|
|
|
fmt.Fprintf(out, "\n%vis die: %t", indent+" ", n.isDie)
|
|
|
|
|
|
|
|
if n.expr != nil {
|
|
|
|
fmt.Fprintf(out, "\n%vexpr:", indent+" ")
|
|
|
|
n.expr.Print(out, indent+" ")
|
|
|
|
}
|
|
|
|
}
|