2017-12-12 21:26:00 +00:00
|
|
|
package assign_op
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AssignOp struct {
|
2017-12-27 17:55:58 +00:00
|
|
|
name string
|
2017-12-29 15:53:13 +00:00
|
|
|
attributes map[string]interface{}
|
2017-12-31 10:59:22 +00:00
|
|
|
position *node.Position
|
2017-12-12 21:26:00 +00:00
|
|
|
variable node.Node
|
|
|
|
expression node.Node
|
|
|
|
}
|