php-parser/node/stmt/halt_compiler.go
2018-01-09 00:30:28 +02:00

37 lines
543 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type HaltCompiler struct {
position *node.Position
}
func NewHaltCompiler() *HaltCompiler {
return &HaltCompiler{
nil,
}
}
func (n *HaltCompiler) Attributes() map[string]interface{} {
return nil
}
func (n *HaltCompiler) Position() *node.Position {
return n.position
}
func (n *HaltCompiler) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *HaltCompiler) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
v.LeaveNode(n)
}