A call represents a function call expression, e.g., sin(x).
| 33 | |
| 34 | // A call represents a function call expression, e.g., sin(x). |
| 35 | type call struct { |
| 36 | fn string // one of "pow", "sin", "sqrt" |
| 37 | args []Expr |
| 38 | } |
| 39 | |
| 40 | //!-ast |
nothing calls this directly
no outgoing calls
no test coverage detected