| 260 | bool IsPartitionedCall() const { return class_ == NC_PARTITIONED_CALL; } |
| 261 | bool IsIfNode() const { return class_ == NC_IF; } |
| 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 |
no outgoing calls
no test coverage detected