php-parser/node/expr/cast/cast.go
2017-12-29 17:53:13 +02:00

12 lines
160 B
Go

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