KT-29862 startOffset of class declaration

NB startOffset of primary class constructor declaration should still
point to the 'class' keyword (because of debugger requirements).
This commit is contained in:
Dmitry Petrov
2019-02-15 13:49:28 +03:00
parent 92a160e6c3
commit 1b0d410a6f
9 changed files with 115 additions and 20 deletions
@@ -0,0 +1,15 @@
abstract class Test1(
val x: Int
) {
}
public
abstract
class Test2(
val x: Int
) {
inner
class TestInner(
val x: Int
)
}