Minor: drop semicolon in package declaration everywhere.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
fun main(args : Array<String>) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
import kotlin.InlineOption.*
|
||||
|
||||
@@ -39,4 +39,4 @@ class Bar {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
import kotlin.InlineOption.*
|
||||
|
||||
@@ -47,4 +47,4 @@ class Bar {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
class Foo {
|
||||
|
||||
@@ -39,4 +39,4 @@ val packageObjectLiteral = object {
|
||||
fun packageMethod(f : Foo) {
|
||||
class PackageLocalClass {}
|
||||
class PackageLocalObject {}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package interactive;
|
||||
package interactive
|
||||
|
||||
class Shape(var height : Double = 1.0, var fillColor : String = "#AAAAAA") {
|
||||
|
||||
@@ -8,4 +8,4 @@ fun box() : String {
|
||||
var a : Shape? = Shape()
|
||||
a?.height = 1.0
|
||||
return "OK"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
fun box1() = {
|
||||
1
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package foo;
|
||||
package foo
|
||||
|
||||
fun box2() = {
|
||||
1
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user