Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: pkg/analyzer_experimental/lib/src/services/runtime/coverage_lib.dart

Issue 16580018: Code coverage server babysteps. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /// This library is injected into the applications under coverage.
pquitslund 2013/06/11 17:18:56 Copyright?
scheglov 2013/06/11 19:54:23 Done.
2 library coverage_lib;
3
4 /// Notifies that the object with the given [id] - statement, token, etc was exe cuted.
5 touch(int id) {
6 print('touch: $id');
7 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698