Adjusted tests to the new DescriptorRenderer behaviour

This commit is contained in:
Michał Sapalski
2013-04-15 07:43:51 +02:00
committed by Andrey Breslav
parent 2352d86932
commit 7deec28b9c
406 changed files with 2360 additions and 2361 deletions
@@ -3,9 +3,9 @@ package test
public trait CustomAnnotationWithDefaultParameter : java.lang.Object {
public final annotation class MyAnnotation : jet.Annotation {
public constructor MyAnnotation(/*0*/ first : jet.String?, /*1*/ second : jet.String? = ...)
public abstract fun first() : jet.String?
public abstract fun second() : jet.String?
public constructor MyAnnotation(/*0*/ first: jet.String?, /*1*/ second: jet.String? = ...)
public abstract fun first(): jet.String?
public abstract fun second(): jet.String?
}
test.CustomAnnotationWithDefaultParameter.MyAnnotation(first = "f": jet.String, second = "s": jet.String) public open class MyTest : java.lang.Object {