Call represents a function call.
| 216 | |
| 217 | // Call represents a function call. |
| 218 | type Call struct { |
| 219 | Name string |
| 220 | Args []Expr |
| 221 | ExprType Type |
| 222 | } |
| 223 | |
| 224 | // Type returns the type. |
| 225 | func (c *Call) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected