Fix generation of JS source maps for default parameters
(Of open member functions)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
open class A {
|
||||
open fun foo(x: Int = 23): Int = x
|
||||
|
||||
fun bar() = 42
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun foo(x: Int): Int {
|
||||
return x * 2
|
||||
}
|
||||
}
|
||||
|
||||
// LINES: 2 * 2 2 2 * 4 * 7 9
|
||||
Reference in New Issue
Block a user