Rename Extension annotation to ExtensionFunctionType
The old one is kept temporarily and will be removed later
This commit is contained in:
@@ -5,7 +5,7 @@ annotation class ann
|
||||
|
||||
interface Some {
|
||||
fun f1(): String.() -> Int
|
||||
fun f2(): @Extension String.() -> Int
|
||||
fun f2(): @ExtensionFunctionType String.() -> Int
|
||||
fun f3(): @ann String.() -> Int
|
||||
fun f4(): @Extension @ann String.() -> Int
|
||||
fun f4(): @ExtensionFunctionType @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.Extension() kotlin.String.() -> kotlin.Int
|
||||
public abstract fun f2(): @kotlin.ExtensionFunctionType() kotlin.String.() -> kotlin.Int
|
||||
public abstract fun f3(): @ann() kotlin.String.() -> kotlin.Int
|
||||
public abstract fun f4(): @kotlin.Extension() @ann() kotlin.String.() -> kotlin.Int
|
||||
public abstract fun f4(): @kotlin.ExtensionFunctionType() @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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user