| 7 | namespace ftg { |
| 8 | |
| 9 | class ArrayAnalysisReport : public ArgPropAnalysisReport<int> { |
| 10 | |
| 11 | public: |
| 12 | static const int ARRAY_NOLEN = -1; |
| 13 | static const int NO_ARRAY = -2; |
| 14 | |
| 15 | ArrayAnalysisReport() = default; |
| 16 | const std::string getReportType() const override; |
| 17 | Json::Value toJson() const override; |
| 18 | bool fromJson(Json::Value) override; |
| 19 | void add(ArgFlow &AF, std::vector<int> Indices = {}); |
| 20 | }; |
| 21 | |
| 22 | } // namespace ftg |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected