If the node is a variable, then return true. Returns: bool: indicate whether the node is a variable.
(self)
| 5213 | return self.node.is_op() |
| 5214 | |
| 5215 | def is_var(self): |
| 5216 | """ |
| 5217 | If the node is a variable, then return true. |
| 5218 | |
| 5219 | Returns: |
| 5220 | bool: indicate whether the node is a variable. |
| 5221 | """ |
| 5222 | return self.node.is_var() |
| 5223 | |
| 5224 | def is_ctrl_var(self): |
| 5225 | """ |
no outgoing calls
no test coverage detected