92a7ecfac7
Add tests for non-local returns from lambdas.
64 lines
3.2 KiB
Plaintext
Vendored
64 lines
3.2 KiB
Plaintext
Vendored
FILE /classMembers.kt
|
|
CLASS CLASS C
|
|
FUN public constructor C(/*0*/ x: kotlin.Int, /*1*/ y: kotlin.Int, /*2*/ z: kotlin.Int = ...)
|
|
BLOCK_BODY
|
|
INITIALIZE_PROPERTY y
|
|
INITIALIZE_PROPERTY z
|
|
INITIALIZE_PROPERTY property
|
|
PROPERTY public final val y: kotlin.Int getter=null setter=null
|
|
EXPRESSION_BODY
|
|
GET_VAR y type=kotlin.Int operator=INITIALIZE_PROPERTY_FROM_PARAMETER
|
|
PROPERTY public final var z: kotlin.Int getter=null setter=null
|
|
EXPRESSION_BODY
|
|
GET_VAR z type=kotlin.Int operator=INITIALIZE_PROPERTY_FROM_PARAMETER
|
|
FUN public constructor C()
|
|
BLOCK_BODY
|
|
CALL .<init> type=C operator=DELEGATING_CONSTRUCTOR_CALL
|
|
x: CONST Int type=kotlin.Int value='0'
|
|
y: CONST Int type=kotlin.Int value='0'
|
|
z: CONST Int type=kotlin.Int value='0'
|
|
PROPERTY public final val property: kotlin.Int = 0 getter=null setter=null
|
|
EXPRESSION_BODY
|
|
CONST Int type=kotlin.Int value='0'
|
|
PROPERTY public final val propertyWithGet: kotlin.Int getter=<get-propertyWithGet> setter=null
|
|
PROPERTY_GETTER public final fun <get-propertyWithGet>(): kotlin.Int property=propertyWithGet
|
|
BLOCK_BODY
|
|
RETURN type=kotlin.Nothing from=<get-propertyWithGet>
|
|
CONST Int type=kotlin.Int value='42'
|
|
PROPERTY public final var propertyWithGetAndSet: kotlin.Int getter=<get-propertyWithGetAndSet> setter=<set-propertyWithGetAndSet>
|
|
PROPERTY_GETTER public final fun <get-propertyWithGetAndSet>(): kotlin.Int property=propertyWithGetAndSet
|
|
BLOCK_BODY
|
|
RETURN type=kotlin.Nothing from=<get-propertyWithGetAndSet>
|
|
CALL .<get-z> type=kotlin.Int operator=GET_PROPERTY
|
|
$this: THIS public final class C type=C
|
|
PROPERTY_SETTER public final fun <set-propertyWithGetAndSet>(/*0*/ value: kotlin.Int): kotlin.Unit property=propertyWithGetAndSet
|
|
BLOCK_BODY
|
|
CALL .<set-z> type=kotlin.Unit operator=EQ
|
|
$this: THIS public final class C type=C
|
|
<set-?>: GET_VAR value type=kotlin.Int operator=null
|
|
FUN public final fun function(): kotlin.Unit
|
|
BLOCK_BODY
|
|
CALL .println type=kotlin.Unit operator=null
|
|
message: CONST String type=kotlin.String value='1'
|
|
FUN public final fun kotlin.Int.memberExtensionFunction(): kotlin.Unit
|
|
BLOCK_BODY
|
|
CALL .println type=kotlin.Unit operator=null
|
|
message: CONST String type=kotlin.String value='2'
|
|
CLASS CLASS NestedClass
|
|
FUN public final fun function(): kotlin.Unit
|
|
BLOCK_BODY
|
|
CALL .println type=kotlin.Unit operator=null
|
|
message: CONST String type=kotlin.String value='3'
|
|
FUN public final fun kotlin.Int.memberExtensionFunction(): kotlin.Unit
|
|
BLOCK_BODY
|
|
CALL .println type=kotlin.Unit operator=null
|
|
message: CONST String type=kotlin.String value='4'
|
|
CLASS INTERFACE NestedInterface
|
|
FUN public abstract fun foo(): kotlin.Unit
|
|
FUN public open fun bar(): kotlin.Unit
|
|
BLOCK_BODY
|
|
RETURN type=kotlin.Nothing from=bar
|
|
CALL .foo type=kotlin.Unit operator=null
|
|
$this: THIS public interface NestedInterface type=C.NestedInterface
|
|
CLASS OBJECT Companion
|