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