Default arguments stored in function declarations.

This commit is contained in:
Dmitry Petrov
2016-08-31 18:28:04 +03:00
committed by Dmitry Petrov
parent 2d2100b1b5
commit 865d2c43c7
41 changed files with 197 additions and 106 deletions
+4 -4
View File
@@ -1,16 +1,16 @@
FILE /classes.kt
CLASS CLASS TestClass
FUN public constructor TestClass()
CONSTRUCTOR public constructor TestClass()
BLOCK_BODY
CLASS INTERFACE TestInterface
CLASS OBJECT TestObject
FUN private constructor TestObject()
CONSTRUCTOR private constructor TestObject()
BLOCK_BODY
CLASS ANNOTATION_CLASS TestAnnotationClass
FUN public constructor TestAnnotationClass()
CONSTRUCTOR public constructor TestAnnotationClass()
BLOCK_BODY
CLASS ENUM_CLASS TestEnumClass
FUN private constructor TestEnumClass()
CONSTRUCTOR private constructor TestEnumClass()
BLOCK_BODY
ENUM_CONSTRUCTOR_CALL Enum super
FUN public final /*synthesized*/ fun values(): kotlin.Array<TestEnumClass>