NewRelation create Relation
(location *NodeLocation)
| 27 | |
| 28 | // NewRelation create Relation |
| 29 | func NewRelation(location *NodeLocation) *Relation { |
| 30 | return &Relation{ |
| 31 | NewNode(location), |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | // Accept accepts visitor |
| 36 | func (r *Relation) Accept(visitor AstVisitor, ctx interface{}) interface{} { |
no test coverage detected