php-parser/node/expr/cast/cast.go
2017-12-31 13:15:50 +02:00

13 lines
187 B
Go

package cast
import (
"github.com/z7zmey/php-parser/node"
)
type Cast struct {
name string
attributes map[string]interface{}
position *node.Position
expr node.Node
}