Chromium Code Reviews| Index: runtime/vm/coverage.h |
| diff --git a/runtime/vm/coverage.h b/runtime/vm/coverage.h |
| index ef7ee82af82f19bb8d32cc9192326377a2ace968..0793ea9dbdbf667348ea4d8950bba80e6fbf31a6 100644 |
| --- a/runtime/vm/coverage.h |
| +++ b/runtime/vm/coverage.h |
| @@ -7,6 +7,7 @@ |
| #include "vm/allocation.h" |
| #include "vm/flags.h" |
| +#include "vm/object.h" |
|
Ivan Posva
2013/09/27 20:19:54
Why don't you forward declare class Array below?
Michael Lippautz (Google)
2013/09/27 21:46:50
Done.
|
| namespace dart { |
| @@ -23,6 +24,10 @@ class CodeCoverage : public AllStatic { |
| private: |
| static void PrintClass(const Class& cls, const JSONArray& arr); |
| + static int PrintFunctionsInSource(const String& source, |
| + const Array& functions, |
| + int index, |
| + const JSONArray& hits_arr); |
| }; |
| } // namespace dart |