| 107 | } |
| 108 | |
| 109 | void ProgramMemory::setIntValue(const Token* expr, MathLib::bigint value, bool impossible) |
| 110 | { |
| 111 | ValueFlow::Value v(value); |
| 112 | if (impossible) |
| 113 | v.setImpossible(); |
| 114 | setValue(expr, v); |
| 115 | } |
| 116 | |
| 117 | bool ProgramMemory::getTokValue(nonneg int exprid, const Token*& result) const |
| 118 | { |
no outgoing calls
no test coverage detected