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

12 lines
160 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package cast
import (
"github.com/z7zmey/php-parser/node"
)
type Cast struct {
2017-12-29 15:53:13 +00:00
name string
attributes map[string]interface{}
expr node.Node
2017-12-12 21:26:00 +00:00
}