2017-12-12 21:26:00 +00:00
|
|
|
package assign_op
|
|
|
|
|
|
|
|
import (
|
2018-01-05 15:03:59 +00:00
|
|
|
"github.com/z7zmey/php-parser/comment"
|
2017-12-12 21:26:00 +00:00
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AssignOp struct {
|
2017-12-31 10:59:22 +00:00
|
|
|
position *node.Position
|
2018-01-05 15:03:59 +00:00
|
|
|
comments *[]comment.Comment
|
2018-01-04 21:26:04 +00:00
|
|
|
Variable node.Node
|
|
|
|
Expression node.Node
|
2017-12-12 21:26:00 +00:00
|
|
|
}
|