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