JS/RTTI. Fix runtime checking against kotlin.CharSequence

This commit is contained in:
Alexey Andreev
2016-04-28 17:15:54 +03:00
parent f52b836f0e
commit 0f6a6a3ba4
4 changed files with 16 additions and 2 deletions
@@ -20,7 +20,7 @@ import com.google.common.base.Predicate
import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
import org.jetbrains.kotlin.types.KotlinType
interface TypePredicate : Predicate<KotlinType> {
public interface TypePredicate : Predicate<KotlinType> {
override fun apply(type: KotlinType?): Boolean
}