Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
This commit is contained in:
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
test.AnnotatedAnnotation() public final annotation class AnnotatedAnnotation : kotlin.Annotation {
|
||||
public constructor AnnotatedAnnotation()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class AnnotatedMethod {
|
||||
public constructor AnnotatedMethod()
|
||||
kotlin.deprecated(value = "Deprecated in Java": kotlin.String) public open fun f(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,4 +44,4 @@ public trait AnnotationInParam {
|
||||
public constructor MyAnnotationWithParam3(/*0*/ value: test.AnnotationInParam.MyAnnotation3)
|
||||
public abstract fun value(): test.AnnotationInParam.MyAnnotation3
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public open class ArithmeticExpressionInParam {
|
||||
test.ArithmeticExpressionInParam.Anno(value = 42: kotlin.Int) public open class Class {
|
||||
public constructor Class()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public trait ArrayOfEnumInParam {
|
||||
public constructor targetAnnotation(/*0*/ value: kotlin.String)
|
||||
public abstract fun value(): kotlin.String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@ public trait ArrayOfStringInParam {
|
||||
public constructor MyAnnotation(/*0*/ vararg value: kotlin.String /*kotlin.Array<kotlin.String>*/)
|
||||
public abstract fun value(): kotlin.Array<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public open class ClassObjectArrayInParam {
|
||||
test.ClassObjectArrayInParam.Anno(value = {test.ClassObjectArrayInParam.class, test.ClassObjectArrayInParam.Nested.class, kotlin.String.class}: kotlin.Array<java.lang.Class<out kotlin.Any?>>) public open class Nested {
|
||||
public constructor Nested()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public open class ClassObjectInParam {
|
||||
test.ClassObjectInParam.Anno(value = test.ClassObjectInParam.class: java.lang.Class<test.ClassObjectInParam>) public open class Nested {
|
||||
public constructor Nested()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ public trait CustomAnnotation {
|
||||
test.CustomAnnotation.MyAnnotation(value = MyEnum.ONE: test.CustomAnnotation.MyEnum) public open class MyTest {
|
||||
public constructor MyTest()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait CustomAnnotationWithDefaultParameter {
|
||||
test.CustomAnnotationWithDefaultParameter.MyAnnotation(first = "f": kotlin.String, second = "s": kotlin.String) public open class MyTest {
|
||||
public constructor MyTest()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@ public trait EmptyArrayInParam {
|
||||
public constructor MyAnnotation(/*0*/ vararg value: kotlin.String /*kotlin.Array<kotlin.String>*/)
|
||||
public abstract fun value(): kotlin.Array<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public trait EnumInParam {
|
||||
public constructor RetentionAnnotation(/*0*/ value: kotlin.String)
|
||||
public abstract fun value(): kotlin.String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,4 +33,4 @@ public open class NestedEnumArgument {
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.NestedEnumArgument.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.NestedEnumArgument.E>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,4 +15,4 @@ public trait PrimitiveValueInParam {
|
||||
public abstract fun l(): kotlin.Long
|
||||
public abstract fun str(): kotlin.String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait RecursiveAnnotation {
|
||||
public constructor B(/*0*/ value: test.RecursiveAnnotation.A)
|
||||
public abstract fun value(): test.RecursiveAnnotation.A
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait RecursiveAnnotation2 {
|
||||
public constructor B(/*0*/ value: kotlin.String)
|
||||
public abstract fun value(): kotlin.String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final annotation class SimpleAnnotation : kotlin.Annotation {
|
||||
public constructor SimpleAnnotation()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@ public trait StringConcatenationInParam {
|
||||
test.StringConcatenationInParam.Anno(value = "hello": kotlin.String) public open class Class {
|
||||
public constructor Class()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,4 +13,4 @@ public trait StringConstantInParam {
|
||||
|
||||
// Static members
|
||||
public final val HEL: kotlin.String = "hel"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@ public trait StringInParam {
|
||||
test.StringInParam.Anno(value = "hello": kotlin.String) public open class Class {
|
||||
public constructor Class()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user