Created
July 17, 2013 09:02
-
-
Save chrisbu/6018970 to your computer and use it in GitHub Desktop.
Example output from Dart's coverage tool.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Coverage target process (pid 6476) found listening on port 51189. | |
Debuggee isolate id 7114 created. | |
Debuggee isolate id 7114 shut down. | |
Sending kill signal to process 6476. | |
Connection closed by coverage target | |
Process 6476 terminated with exit code 0. | |
Coverage info collected from 42 breakpoints: | |
file:///c:/Work/dart/projects/test.dart | |
|library mytest; | |
| | |
|main() { | |
12| for (var i = 0; i < 10; i++) { | |
10| foo(); | |
| } | |
|} | |
| | |
|foo() { | |
10| print("foo"); | |
|} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment