If the node is a control dependence variable, then return true. Returns: bool: indicate whether the node is a control dependence variable.
(self)
| 5222 | return self.node.is_var() |
| 5223 | |
| 5224 | def is_ctrl_var(self): |
| 5225 | """ |
| 5226 | If the node is a control dependence variable, then return true. |
| 5227 | |
| 5228 | Returns: |
| 5229 | bool: indicate whether the node is a control dependence variable. |
| 5230 | """ |
| 5231 | return self.node.is_ctrl_var() |
| 5232 | |
| 5233 | def clear_inputs(self): |
| 5234 | """ |
no outgoing calls
no test coverage detected