| 84 | virtual ProgramState getProgramState() const = 0; |
| 85 | |
| 86 | virtual int getIndirect(const Token* tok) const { |
| 87 | const ValueFlow::Value* value = getValue(tok); |
| 88 | if (value) |
| 89 | return value->indirect; |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | virtual bool isGlobal() const { |
| 94 | return false; |
no test coverage detected