php-parser/node/expr/assign_op/assign_op.go
2018-01-08 21:50:39 +02:00

14 lines
234 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
}