| 1386 | |
| 1387 | const ValueFlow::Value* getKnownValue(ValueFlow::Value::ValueType t) const; |
| 1388 | MathLib::bigint getKnownIntValue() const { |
| 1389 | assert(!mImpl->mValues->empty()); |
| 1390 | assert(mImpl->mValues->front().isKnown()); |
| 1391 | assert(mImpl->mValues->front().valueType == ValueFlow::Value::ValueType::INT); |
| 1392 | return mImpl->mValues->front().intvalue; |
| 1393 | } |
| 1394 | |
| 1395 | const ValueFlow::Value* getValue(MathLib::bigint val) const; |
| 1396 |