[kotlin compiler][update] 1.2.60-dev-342

This commit is contained in:
Vasily Levchenko
2018-05-28 12:17:43 +03:00
parent 705e39a61c
commit 81c99a060f
2 changed files with 4 additions and 4 deletions
@@ -108,8 +108,8 @@ private fun createFakeOverride(descriptor: CallableMemberDescriptor, startOffset
is PropertyDescriptor -> is PropertyDescriptor ->
IrPropertyImpl(startOffset, endOffset, IrDeclarationOrigin.FAKE_OVERRIDE, descriptor).apply { IrPropertyImpl(startOffset, endOffset, IrDeclarationOrigin.FAKE_OVERRIDE, descriptor).apply {
// TODO: add field if getter is missing? // TODO: add field if getter is missing?
getter = descriptor.getter?.createFunction() getter = descriptor.getter?.createFunction() as IrSimpleFunction?
setter = descriptor.setter?.createFunction() setter = descriptor.setter?.createFunction() as IrSimpleFunction?
} }
else -> TODO(descriptor.toString()) else -> TODO(descriptor.toString())
} }
+2 -2
View File
@@ -20,8 +20,8 @@ remoteRoot=konan_tests
#kotlinCompilerModule=org.jetbrains.kotlin:kotlin-compiler:1.1-SNAPSHOT #kotlinCompilerModule=org.jetbrains.kotlin:kotlin-compiler:1.1-SNAPSHOT
# Download artifacts of https://teamcity.jetbrains.com/viewType.html?buildTypeId=Kotlin_120_Compiler # Download artifacts of https://teamcity.jetbrains.com/viewType.html?buildTypeId=Kotlin_120_Compiler
testDataVersion=1226829:id testDataVersion=1226829:id
kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_dev_CompilerAllPlugins),number:1.2.60-dev-188,tag:kotlin-native,pinned:true/artifacts/content/maven kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_dev_CompilerAllPlugins),number:1.2.60-dev-342,tag:kotlin-native,pinned:true/artifacts/content/maven
kotlinVersion=1.2.60-dev-188 kotlinVersion=1.2.60-dev-342
konanVersion=0.8 konanVersion=0.8
org.gradle.jvmargs='-Dfile.encoding=UTF-8' org.gradle.jvmargs='-Dfile.encoding=UTF-8'