php-parser/node/scalar/encapsed.go

41 lines
748 B
Go
Raw Normal View History

2017-12-04 22:02:24 +00:00
package scalar
2017-12-03 21:29:17 +00:00
import (
"fmt"
"io"
2017-12-27 17:55:58 +00:00
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
2017-12-03 21:29:17 +00:00
)
2017-12-27 17:55:58 +00:00
func(n Encapsed) Name() string {
return "Encapsed"
}
2017-12-03 21:29:17 +00:00
2017-12-04 22:02:24 +00:00
type Encapsed struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-03 21:29:17 +00:00
startToken token.Token
2017-12-27 17:55:58 +00:00
endToken token.Token
parts []node.Node
2017-12-03 21:29:17 +00:00
}
2017-12-04 22:02:24 +00:00
func NewEncapsed(startToken token.Token, parts []node.Node, endToken token.Token) node.Node {
return Encapsed{
2017-12-27 17:55:58 +00:00
"Encapsed",
2017-12-03 21:29:17 +00:00
startToken,
endToken,
parts,
}
}
2017-12-04 22:02:24 +00:00
func (n Encapsed) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [%d %d]", indent, n.name, n.startToken.StartLine, n.endToken.EndLine)
if n.parts != nil {
fmt.Fprintf(out, "\n%vparts:", indent+" ")
for _, nn := range n.parts {
nn.Print(out, indent+" ")
}
2017-12-03 21:29:17 +00:00
}
}