Fix JS source maps for lambdas
This commit is contained in:
+1
-1
@@ -14,4 +14,4 @@ suspend fun bar(): Unit {
|
||||
println(a + b)
|
||||
}
|
||||
|
||||
// LINES: 4 5 6 * 9 9 9 9 9 9 9 9 * 10 11 11 11 11 11 * 11 12 13 13 13 13 13 13 14
|
||||
// LINES: 4 5 6 4 9 9 9 9 9 9 9 9 * 10 11 11 11 11 11 * 11 12 13 13 13 13 13 13 14
|
||||
@@ -0,0 +1,7 @@
|
||||
fun foo(x: Int): () -> Unit = {
|
||||
println(x)
|
||||
}
|
||||
|
||||
fun bar() = 23
|
||||
|
||||
// LINES: 1 2 1 5
|
||||
Reference in New Issue
Block a user