| Index: runtime/vm/coverage.h
|
| ===================================================================
|
| --- runtime/vm/coverage.h (revision 37119)
|
| +++ runtime/vm/coverage.h (working copy)
|
| @@ -15,6 +15,7 @@
|
| // Forward declarations.
|
| class Class;
|
| class Function;
|
| +template <typename T> class GrowableArray;
|
| class Isolate;
|
| class JSONArray;
|
| class JSONStream;
|
| @@ -27,7 +28,8 @@
|
| private:
|
| static void PrintClass(const Class& cls, const JSONArray& arr);
|
| static void CompileAndAdd(const Function& function,
|
| - const JSONArray& hits_arr);
|
| + const JSONArray& hits_arr,
|
| + const GrowableArray<intptr_t>& pos_to_line);
|
| };
|
|
|
| } // namespace dart
|
|
|