Merge pull request #530 from yole/coverage

Initial implementation of coverage support in IntelliJ IDEA plugin.
This commit is contained in:
Natalia Ukhorskaya
2014-12-10 12:35:10 +03:00
12 changed files with 610 additions and 441 deletions
@@ -0,0 +1,2 @@
org/demo/coverage/Foo
org/demo/coverage/Foo$bar$1
@@ -0,0 +1,12 @@
package org.demo.coverage
public class Foo {
public fun forEach(fn: (Any?) -> Unit): Unit {
}
public fun bar() {
forEach {
println("foo")
}
}
}