Converter:

Use formatter in converter tests
Reformat test data
This commit is contained in:
Pavel V. Talanov
2013-11-26 18:28:04 +04:00
parent ea6b751645
commit 741e031ff1
377 changed files with 2742 additions and 2574 deletions
@@ -1,6 +1,6 @@
class Base() {
private var myFirst : String = 0
private var myFirst: String = 0
}
class Child() : Base() {
private var mySecond : String = 0
private var mySecond: String = 0
}
@@ -1,6 +1,6 @@
open class Base() {
private var myFirst : String? = null
private var myFirst: String? = null
}
open class Child() : Base() {
private var mySecond : String? = null
private var mySecond: String? = null
}
@@ -1,3 +1,3 @@
class C() {
var f : Foo = 0
var f: Foo = 0
}
@@ -1,3 +1,3 @@
open class C() {
var f : Foo? = null
var f: Foo? = null
}
@@ -1,3 +1,3 @@
class C() {
private var f : Foo = 0
private var f: Foo = 0
}
+1 -1
View File
@@ -1,3 +1,3 @@
open class C() {
private var f : Foo? = null
private var f: Foo? = null
}
@@ -1,3 +1,3 @@
class C() {
protected var f : Foo = 0
protected var f: Foo = 0
}
@@ -1,3 +1,3 @@
open class C() {
protected var f : Foo? = null
protected var f: Foo? = null
}
@@ -1,3 +1,3 @@
class C() {
public var f : Foo = 0
public var f: Foo = 0
}
+1 -1
View File
@@ -1,3 +1,3 @@
open class C() {
public var f : Foo? = null
public var f: Foo? = null
}
@@ -1,3 +1,3 @@
class C() {
val f : Foo = Foo(1, 2)
val f: Foo = Foo(1, 2)
}
+1 -1
View File
@@ -1,3 +1,3 @@
open class C() {
val f : Foo = Foo(1, 2)
val f: Foo = Foo(1, 2)
}
@@ -1,3 +1,3 @@
class C() {
var f : Foo = Foo(1, 2)
var f: Foo = Foo(1, 2)
}
+1 -1
View File
@@ -1,3 +1,3 @@
open class C() {
var f : Foo? = Foo(1, 2)
var f: Foo? = Foo(1, 2)
}
@@ -1,3 +1,3 @@
class C() {
var f : Foo = 0
var f: Foo = 0
}
@@ -1,3 +1,3 @@
open class C() {
var f : Foo? = null
var f: Foo? = null
}