* Checks whether this variable info is free. * @returns {boolean} the variable is free or not
()
| 334 | * @returns {boolean} the variable is free or not |
| 335 | */ |
| 336 | isFree() { |
| 337 | return (this.flags & VariableInfoFlags.Free) > 0; |
| 338 | } |
| 339 | |
| 340 | /** |
| 341 | * Checks whether this variable info is tagged. |
no outgoing calls
no test coverage detected