Drop pre-1.0 whole-project syntax migration actions

This commit is contained in:
Dmitry Jemerov
2017-03-27 14:57:44 +02:00
parent d615aba4cf
commit d8dfad875d
13 changed files with 3 additions and 468 deletions
@@ -1 +0,0 @@
class Q private constructor()
@@ -1,15 +0,0 @@
// "Add missing 'constructor' keyword in whole project" "true"
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
annotation class Ann(val x: Int = 1)
class A @Ann(1)private constructor(x: Int) {
inner class B() // do not insert here
inner class C protected constructor() {
fun foo() {
class Local private constructor()
}
}
}
@@ -1,15 +0,0 @@
// "Add missing 'constructor' keyword in whole project" "true"
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
annotation class Ann(val x: Int = 1)
class A @Ann(1)<caret>private (x: Int) {
inner class B() // do not insert here
inner class C protected () {
fun foo() {
class Local private()
}
}
}
@@ -1 +0,0 @@
class Q private()