php-parser/node/expr/cast/cast.go

13 lines
198 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package cast
import (
2018-01-05 15:03:59 +00:00
"github.com/z7zmey/php-parser/comment"
2017-12-12 21:26:00 +00:00
"github.com/z7zmey/php-parser/node"
)
type Cast struct {
2018-01-04 22:12:01 +00:00
position *node.Position
2018-01-05 15:03:59 +00:00
comments *[]comment.Comment
2018-01-04 22:12:01 +00:00
Expr node.Node
2017-12-12 21:26:00 +00:00
}