CallNode represents a function or a method call.
| 175 | |
| 176 | // CallNode represents a function or a method call. |
| 177 | type CallNode struct { |
| 178 | base |
| 179 | Callee Node // Node of the call. Like "foo" in "foo()". |
| 180 | Arguments []Node // Arguments of the call. |
| 181 | } |
| 182 | |
| 183 | // BuiltinNode represents a builtin function call. |
| 184 | type BuiltinNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected