4332f1cb2c
When to name references to the same name are represented by a shared JS AST node, setting line number of the second usage may override line number of the first usage. Also, supply more JS AST nodes related to default parameters, with corresponding source information.
10 lines
125 B
Kotlin
Vendored
10 lines
125 B
Kotlin
Vendored
fun box(
|
|
x: Int = 23,
|
|
y: Int =
|
|
42
|
|
) {
|
|
println(x)
|
|
println(y)
|
|
}
|
|
|
|
// LINES: 2 2 3 4 6 7 |