Is this node a function input
| 262 | bool IsWhileNode() const { return class_ == NC_WHILE; } |
| 263 | // Is this node a function input |
| 264 | bool IsArg() const { return class_ == NC_ARG; } |
| 265 | // Is this node a function output |
| 266 | bool IsRetval() const { return class_ == NC_RETVAL; } |
| 267 | bool IsRunGraph() const { |
no outgoing calls
no test coverage detected