Append newline to EOF for .txt test data files

Reverts and fixes 102f0d3
This commit is contained in:
Alexander Udalov
2014-10-21 03:15:52 +04:00
parent 6e5647bb67
commit 3a8ad45dec
2430 changed files with 2430 additions and 2430 deletions

View File

@@ -3,4 +3,4 @@ package test
public final class ArrayTypeVariance {
public constructor ArrayTypeVariance()
public final fun toArray(/*0*/ p0: kotlin.Array<(out) kotlin.Any!>!): kotlin.Array<(out) kotlin.Any!>!
}
}

View File

@@ -32,4 +32,4 @@ public abstract class ClassDoesNotOverrideMethod : java.util.Date {
kotlin.deprecated(value = "Deprecated in Java": kotlin.String) public open override /*1*/ /*fake_override*/ fun toGMTString(): kotlin.String!
kotlin.deprecated(value = "Deprecated in Java": kotlin.String) public open override /*1*/ /*fake_override*/ fun toLocaleString(): kotlin.String!
invisible_fake open override /*1*/ /*fake_override*/ fun writeObject(/*0*/ p0: java.io.ObjectOutputStream!): kotlin.Unit
}
}

View File

@@ -4,4 +4,4 @@ public final class ClassWithConstVal {
public constructor ClassWithConstVal()
public final val f: kotlin.Int = 1
public final val f2: kotlin.Int = 1
}
}

View File

@@ -2,4 +2,4 @@ package test
public final class ClassWithTypeP</*0*/ P> {
public constructor ClassWithTypeP</*0*/ P>()
}
}

View File

@@ -3,4 +3,4 @@ package test
public abstract class ClassWithTypePExtendsIterableP</*0*/ P> : kotlin.MutableIterable<P!> {
public constructor ClassWithTypePExtendsIterableP</*0*/ P>()
public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.MutableIterator<P!>
}
}

View File

@@ -2,4 +2,4 @@ package test
public final class ClassWithTypePP</*0*/ P, /*1*/ Q : P!> {
public constructor ClassWithTypePP</*0*/ P, /*1*/ Q : P!>()
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ClassWithTypePRefNext</*0*/ R : kotlin.(Mutable)Iterable<P!>!, /*1*/ P> {
public constructor ClassWithTypePRefNext</*0*/ R : kotlin.(Mutable)Iterable<P!>!, /*1*/ P>()
}
}

View File

@@ -2,4 +2,4 @@ package test
public final class ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P!>!> {
public constructor ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P!>!>()
}
}

View File

@@ -2,4 +2,4 @@ package test
public final class ClassWithTypePRefSelfAndClass</*0*/ P : test.ClassWithTypePRefSelfAndClass<P!>!> {
public constructor ClassWithTypePRefSelfAndClass</*0*/ P : test.ClassWithTypePRefSelfAndClass<P!>!>()
}
}

View File

@@ -47,4 +47,4 @@ public final enum class EnumMembers : kotlin.Enum<test.EnumMembers!> {
// Static members
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumMembers
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumMembers>
}
}

View File

@@ -3,4 +3,4 @@ package test
public final class FieldAsVar {
public constructor FieldAsVar()
public final var f: kotlin.Int
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class FieldOfArrayType {
public constructor FieldOfArrayType()
public final var files: kotlin.Array<(out) java.io.File!>!
}
}

View File

@@ -3,4 +3,4 @@ package test
public final class FinalFieldAsVal {
public constructor FinalFieldAsVal()
public final val f: kotlin.Int = 1
}
}

View File

@@ -17,4 +17,4 @@ public final class InheritMethodsDifferentReturnTypes {
public abstract fun bar(): kotlin.CharSequence!
public abstract fun foo(): kotlin.String!
}
}
}

View File

@@ -17,4 +17,4 @@ public final class InheritMethodsDifferentReturnTypesGeneric {
public abstract fun bar(): BB!
public abstract fun foo(): FF!
}
}
}

View File

@@ -6,4 +6,4 @@ public open class InnerClass {
public open inner class Inner {
public constructor Inner()
}
}
}

View File

@@ -6,4 +6,4 @@ public open class InnerClassReferencesOuterTP</*0*/ P> {
public open inner class Inner</*0*/ Q : P!> {
public constructor Inner</*0*/ Q : P!>()
}
}
}

View File

@@ -11,4 +11,4 @@ public open class InnerClassesInGeneric</*0*/ P, /*1*/ Q> {
public constructor Inner2()
public open fun iterator(): kotlin.(Mutable)Iterator<P!>!
}
}
}

View File

@@ -27,4 +27,4 @@ public open class InnerOfGeneric {
// Static members
public final /*synthesized*/ fun </*0*/ E> S(/*0*/ function: () -> kotlin.(Mutable)Iterator<E!>!): test.InnerOfGeneric.S<E>
}
}

View File

@@ -37,4 +37,4 @@ public final enum class JavaEnum : kotlin.Enum<test.JavaEnum!> {
// Static members
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.JavaEnum
public final /*synthesized*/ fun values(): kotlin.Array<test.JavaEnum>
}
}

View File

@@ -7,4 +7,4 @@ public final class MethodReferencesOuterClassTP</*0*/ P> {
public constructor Inner()
public final fun </*0*/ Q : P!> f(): kotlin.Unit
}
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodTypePOneUpperBound {
public constructor MethodTypePOneUpperBound()
public open fun </*0*/ T : kotlin.Cloneable!> bar(): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodTypePTwoUpperBounds {
public constructor MethodTypePTwoUpperBounds()
public open fun </*0*/ T : kotlin.Cloneable!> foo(): kotlin.Unit where T : java.lang.Runnable!
}
}

View File

@@ -3,4 +3,4 @@ package test
public final class MethodWithTypeP {
public constructor MethodWithTypeP()
public final fun </*0*/ P> f(): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public final class MethodWithTypePP {
public constructor MethodWithTypePP()
public final fun </*0*/ P, /*1*/ Q : P!> f(): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithTypePRefClassP</*0*/ P> {
public constructor MethodWithTypePRefClassP</*0*/ P>()
public final fun </*0*/ Q : P!> f(): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public final class MethosWithPRefTP {
public constructor MethosWithPRefTP()
public final fun </*0*/ P> f(/*0*/ p0: P!): kotlin.Unit
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class MyException {
public constructor MyException(/*0*/ p0: kotlin.String!, /*1*/ p1: kotlin.Throwable!)
}
}

View File

@@ -6,4 +6,4 @@ public open class NestedClass {
public open class Nested {
public constructor Nested()
}
}
}

View File

@@ -22,4 +22,4 @@ public open class OverrideMethod {
public/*package*/ constructor SuperBase()
public/*package*/ open fun quux(/*0*/ p0: kotlin.Int): kotlin.Unit
}
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class JFrame : awt.Frame {
public constructor JFrame()
protected/*protected and package*/ final var accessibleContext: kotlin.String!
}
}

View File

@@ -26,4 +26,4 @@ public open class PrivateMembers {
private final var staticField: kotlin.Int
private final /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.PrivateMembers.SamInterface
private open fun staticMethod(): kotlin.Unit
}
}

View File

@@ -16,4 +16,4 @@ public open class PrivateMembersInHierarchy {
private final var field2: kotlin.Int
private open fun method(): kotlin.Unit
}
}
}

View File

@@ -11,4 +11,4 @@ public trait RawTypeWithUpperBound {
// Static members
public final /*synthesized*/ fun Bar(/*0*/ function: (test.RawTypeWithUpperBound.Foo<out kotlin.CharSequence!>!) -> kotlin.Unit): test.RawTypeWithUpperBound.Bar
}
}

View File

@@ -1,4 +1,4 @@
package test
public trait RawUpperBound</*0*/ T : test.RawUpperBound<out kotlin.Any?>!> {
}
}

View File

@@ -1,4 +1,4 @@
package test
public trait RecursiveRawUpperBound</*0*/ T : test.RecursiveRawUpperBound<out kotlin.Any?>!> {
}
}

View File

@@ -1,4 +1,4 @@
package test
public trait RecursiveWildcardUpperBound</*0*/ T : test.RecursiveWildcardUpperBound<out kotlin.Any?>!> {
}
}

View File

@@ -3,4 +3,4 @@ package test
public trait RemoveRedundantProjectionKind {
public abstract fun f(/*0*/ p0: (kotlin.MutableCollection<out kotlin.CharSequence!>..kotlin.Collection<kotlin.CharSequence!>?)): kotlin.Unit
public abstract fun f(/*0*/ p0: kotlin.Comparable<kotlin.CharSequence!>!): kotlin.Unit
}
}

View File

@@ -2,4 +2,4 @@ package test
public final class Simple {
public constructor Simple()
}
}

View File

@@ -9,4 +9,4 @@ public/*package*/ open class B {
public open class SubclassFromNested : test.B.C {
public constructor SubclassFromNested()
}
}

View File

@@ -4,4 +4,4 @@ public final class TwoFields {
public constructor TwoFields()
public final var a: kotlin.Int
public final var b: kotlin.Short
}
}

View File

@@ -6,4 +6,4 @@ public final class UnboundWildcard {
public trait MyClass</*0*/ T : kotlin.CharSequence!> {
}
}
}

View File

@@ -2,4 +2,4 @@ package test
test.AnnotatedAnnotation() public final annotation class AnnotatedAnnotation : kotlin.Annotation {
public constructor AnnotatedAnnotation()
}
}

View File

@@ -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
}
}

View File

@@ -44,4 +44,4 @@ public trait AnnotationInParam {
public constructor MyAnnotationWithParam3(/*0*/ value: test.AnnotationInParam.MyAnnotation3)
public abstract fun value(): test.AnnotationInParam.MyAnnotation3
}
}
}

View File

@@ -11,4 +11,4 @@ public open class ArithmeticExpressionInParam {
test.ArithmeticExpressionInParam.Anno(value = 42: kotlin.Int) public open class Class {
public constructor Class()
}
}
}

View File

@@ -6,4 +6,4 @@ public trait ArrayOfEnumInParam {
public constructor targetAnnotation(/*0*/ value: kotlin.String)
public abstract fun value(): kotlin.String
}
}
}

View File

@@ -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>
}
}
}

View File

@@ -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()
}
}
}

View File

@@ -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()
}
}
}

View File

@@ -35,4 +35,4 @@ public trait CustomAnnotation {
test.CustomAnnotation.MyAnnotation(value = MyEnum.ONE: test.CustomAnnotation.MyEnum) public open class MyTest {
public constructor MyTest()
}
}
}

View File

@@ -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()
}
}
}

View File

@@ -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>
}
}
}

View File

@@ -6,4 +6,4 @@ public trait EnumInParam {
public constructor RetentionAnnotation(/*0*/ value: kotlin.String)
public abstract fun value(): kotlin.String
}
}
}

View File

@@ -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>
}
}
}

View File

@@ -15,4 +15,4 @@ public trait PrimitiveValueInParam {
public abstract fun l(): kotlin.Long
public abstract fun str(): kotlin.String
}
}
}

View File

@@ -11,4 +11,4 @@ public trait RecursiveAnnotation {
public constructor B(/*0*/ value: test.RecursiveAnnotation.A)
public abstract fun value(): test.RecursiveAnnotation.A
}
}
}

View File

@@ -11,4 +11,4 @@ public trait RecursiveAnnotation2 {
public constructor B(/*0*/ value: kotlin.String)
public abstract fun value(): kotlin.String
}
}
}

View File

@@ -2,4 +2,4 @@ package test
public final annotation class SimpleAnnotation : kotlin.Annotation {
public constructor SimpleAnnotation()
}
}

View File

@@ -10,4 +10,4 @@ public trait StringConcatenationInParam {
test.StringConcatenationInParam.Anno(value = "hello": kotlin.String) public open class Class {
public constructor Class()
}
}
}

View File

@@ -13,4 +13,4 @@ public trait StringConstantInParam {
// Static members
public final val HEL: kotlin.String = "hel"
}
}

View File

@@ -10,4 +10,4 @@ public trait StringInParam {
test.StringInParam.Anno(value = "hello": kotlin.String) public open class Class {
public constructor Class()
}
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorGenericDeep {
public constructor ConstructorGenericDeep(/*0*/ p0: java.lang.Class<kotlin.Any!>!)
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorGenericSimple {
public constructor ConstructorGenericSimple(/*0*/ p0: kotlin.Any!)
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorGenericUpperBound {
public constructor ConstructorGenericUpperBound(/*0*/ p0: java.util.RandomAccess!)
}
}

View File

@@ -4,4 +4,4 @@ public open class DifferentGetterAndSetter {
public constructor DifferentGetterAndSetter()
public open fun getSomething(): kotlin.Int
public open fun setSomething(/*0*/ p0: kotlin.String!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public trait JavaBeanAbstractGetter {
public abstract fun getBlue(): kotlin.Int
public abstract fun getRed(): kotlin.Int
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class JavaBeanVal {
public constructor JavaBeanVal()
public open fun getColor(): kotlin.String!
}
}

View File

@@ -4,4 +4,4 @@ public open class JavaBeanVar {
public constructor JavaBeanVar()
public open fun getColor(): kotlin.String!
public open fun setColor(/*0*/ p0: kotlin.String!): kotlin.Unit
}
}

View File

@@ -4,4 +4,4 @@ public open class JavaBeanVarOfGenericType</*0*/ P> {
public constructor JavaBeanVarOfGenericType</*0*/ P>()
public open fun getCharacters(): java.util.ArrayList<P!>!
public open fun setCharacters(/*0*/ p0: java.util.ArrayList<P!>!): kotlin.Unit
}
}

View File

@@ -4,4 +4,4 @@ public open class TwoSetters {
public constructor TwoSetters()
public open fun setSize(/*0*/ p0: kotlin.Int): kotlin.Unit
public open fun setSize(/*0*/ p0: kotlin.String!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class AllBoundsInWhen {
public constructor AllBoundsInWhen()
public open fun </*0*/ T : java.io.Serializable!> foo(): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class ArrayType {
public constructor ArrayType()
public open fun foo(): kotlin.Array<(out) kotlin.String!>!
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorWithNewTypeParams</*0*/ T> {
public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any!)
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorWithParentTypeParams</*0*/ T> {
public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T!)
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorWithSeveralParams {
public constructor ConstructorWithSeveralParams(/*0*/ integer: kotlin.Int!, /*1*/ intField: kotlin.Int, /*2*/ collection: java.util.ArrayList<kotlin.String!>!)
}
}

View File

@@ -2,4 +2,4 @@ package test
public open class ConstructorWithoutParams {
public constructor ConstructorWithoutParams()
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class CustomProjectionKind {
public constructor CustomProjectionKind()
public open fun foo(): kotlin.(Mutable)List<kotlin.Number!>!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithFunctionTypes {
public constructor MethodWithFunctionTypes()
public open fun foo(/*0*/ f: ((kotlin.String!) -> kotlin.String!)!): (kotlin.String!.() -> kotlin.String!)!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithGenerics {
public constructor MethodWithGenerics()
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithMappedClasses {
public constructor MethodWithMappedClasses()
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.(Mutable)List<in T!>!, /*1*/ src: kotlin.(Mutable)List<T!>!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithTypeParameters {
public constructor MethodWithTypeParameters()
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable!> foo(/*0*/ a: A!, /*1*/ b: (kotlin.MutableList<out B!>..kotlin.List<B!>?), /*2*/ c: kotlin.(Mutable)List<in kotlin.String!>!): kotlin.Unit where B : kotlin.(Mutable)List<kotlin.Cloneable!>!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MethodWithVararg {
public constructor MethodWithVararg()
public open fun foo(/*0*/ vararg s: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
}
}

View File

@@ -5,4 +5,4 @@ public open class PropertyArrayTypes</*0*/ T> {
public final var array: kotlin.Array<(out) kotlin.String!>!
public final var arrayOfArrays: kotlin.Array<(out) kotlin.Array<(out) kotlin.String!>!>!
public final var genericArray: kotlin.Array<(out) T!>!
}
}

View File

@@ -6,4 +6,4 @@ public open class PropertyComplexTypes</*0*/ T> {
public final var listDefinedGeneric: java.util.ArrayList<kotlin.String!>!
public final var listGeneric: java.util.ArrayList<T!>!
public final var listOfGenericList: java.util.ArrayList<java.util.ArrayList<T!>!>!
}
}

View File

@@ -4,4 +4,4 @@ public open class PropertySimpleType {
public constructor PropertySimpleType()
public final var fieldOne: kotlin.String!
public final var fieldTwo: kotlin.String!
}
}

View File

@@ -6,4 +6,4 @@ public final class StarProjection {
public trait MyClass</*0*/ T : kotlin.CharSequence!> {
}
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class AddingNullability {
public constructor AddingNullability()
public open fun foo(): kotlin.Int
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class ConflictingProjectionKind {
public constructor ConflictingProjectionKind()
public open fun foo(/*0*/ p0: kotlin.(Mutable)List<kotlin.Number!>!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class ExplicitFieldGettersAndSetters {
public constructor ExplicitFieldGettersAndSetters()
public final var foo: kotlin.String!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class ExtraUpperBound {
public constructor ExtraUpperBound()
public open fun </*0*/ A : java.lang.Runnable!> foo(): kotlin.String!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class MissingUpperBound {
public constructor MissingUpperBound()
public open fun </*0*/ A : java.lang.Runnable!> foo(): kotlin.String! where A : kotlin.Cloneable!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class NoFieldTypeRef {
public constructor NoFieldTypeRef()
public final var foo: kotlin.String!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class NotVarargReplacedWithVararg {
public constructor NotVarargReplacedWithVararg()
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class RedundantProjectionKind {
public constructor RedundantProjectionKind()
public open fun foo(/*0*/ list: kotlin.(Mutable)List<kotlin.Number!>!): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class ReturnTypeMissing {
public constructor ReturnTypeMissing()
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.Int
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class SyntaxError {
public constructor SyntaxError()
public open fun foo(): kotlin.Int!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class SyntaxErrorInFieldAnnotation {
public constructor SyntaxErrorInFieldAnnotation()
public final var foo: kotlin.String!
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class VarargReplacedWithNotVararg {
public constructor VarargReplacedWithNotVararg()
public open fun foo(/*0*/ vararg p0: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
}
}

View File

@@ -3,4 +3,4 @@ package test
public open class WrongFieldInitializer {
public constructor WrongFieldInitializer()
public final var foo: kotlin.String!
}
}

Some files were not shown because too many files have changed in this diff Show More