Files
sdk/runtime/vm/coverage.h
T
mlippautz@google.com 1941e151ea Improve code coverage generation.
- Remove function name from output.
- Remove column from output (side effect: We can use fast version of
  GetTokenLocation())
- Insert HANDLESCOPES
- Fold source file entries where easily possible, i.e., fold consecutive entries
  created by functions in the same source file.
- Change format to

  [{
     "source": "...",
     "hits": [<line>,<hitcount>, ...]
   }, ... ]

BUG=
R=iposva@google.com

Review URL: https://codereview.chromium.org//24654003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28030 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 23:22:49 +00:00

34 lines
782 B
C++

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef VM_COVERAGE_H_
#define VM_COVERAGE_H_
#include "vm/allocation.h"
#include "vm/flags.h"
namespace dart {
DECLARE_FLAG(charp, coverage_dir);
// Forward declarations.
class Class;
class Function;
class Isolate;
class JSONArray;
class CodeCoverage : public AllStatic {
public:
static void Write(Isolate* isolate);
private:
static void PrintClass(const Class& cls, const JSONArray& arr);
static void CompileAndAdd(const Function& function,
const JSONArray& hits_arr);
};
} // namespace dart
#endif // VM_COVERAGE_H_