halt_compiler node

This commit is contained in:
vadim
2017-12-08 11:37:55 +02:00
parent 3584676e43
commit 8cab46a1b4
3 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
type HaltCompiler struct {
node.SimpleNode
token token.Token
}
func NewHaltCompiler(token token.Token) node.Node {
return HaltCompiler{
node.SimpleNode{Name: "HaltCompiler", Attributes: make(map[string]string)},
token,
}
}
func (n HaltCompiler) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v [%d %d] %q", indent, n.Name, n.token.StartLine, n.token.EndLine, n.token.Value)
}