php-parser/node/expr/assign_op/assign_op.go
2018-01-05 17:09:04 +02:00

14 lines
235 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type AssignOp struct {
position *node.Position
comments *[]comment.Comment
Variable node.Node
Expression node.Node
}