| 177 | AnalysisState ArgFlow::getState() const { return this->State; } |
| 178 | |
| 179 | ArgDir ArgFlow::getArgDir() const { |
| 180 | assert(State != AnalysisState_Not_Analyzed && |
| 181 | "An argument has not been analyzed yet"); |
| 182 | return Direction; |
| 183 | } |
| 184 | |
| 185 | // TODO: implement to handle more than one related args |
| 186 | unsigned ArgFlow::getLenRelatedArgNo() { |