Revert "Rename Extension annotation to ExtensionFunctionType"

This reverts commit 460dad135c.

The old compiler will not see the new runtime correctly. Postponing this until
1.0
This commit is contained in:
Alexander Udalov
2015-11-30 19:23:13 +03:00
parent 745809c666
commit 877129340f
35 changed files with 66 additions and 81 deletions
@@ -5,7 +5,7 @@ annotation class ann
interface Some {
fun f1(): String.() -> Int
fun f2(): @ExtensionFunctionType String.() -> Int
fun f2(): @Extension String.() -> Int
fun f3(): @ann String.() -> Int
fun f4(): @ExtensionFunctionType @ann String.() -> Int
fun f4(): @Extension @ann String.() -> Int
}
@@ -3,9 +3,9 @@ package
public interface Some {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public abstract fun f1(): kotlin.String.() -> kotlin.Int
public abstract fun f2(): @kotlin.ExtensionFunctionType() kotlin.String.() -> kotlin.Int
public abstract fun f2(): @kotlin.Extension() kotlin.String.() -> kotlin.Int
public abstract fun f3(): @ann() kotlin.String.() -> kotlin.Int
public abstract fun f4(): @kotlin.ExtensionFunctionType() @ann() kotlin.String.() -> kotlin.Int
public abstract fun f4(): @kotlin.Extension() @ann() kotlin.String.() -> kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}