Minor, add toString() for easier debug

This commit is contained in:
Alexander Udalov
2015-08-29 14:07:45 +03:00
parent a1097f7081
commit 408a86c761
2 changed files with 6 additions and 2 deletions
@@ -18,4 +18,6 @@ package org.jetbrains.kotlin.load.kotlin
import org.jetbrains.kotlin.descriptors.SourceElement
public class KotlinJvmBinarySourceElement(public val binaryClass: KotlinJvmBinaryClass) : SourceElement
public class KotlinJvmBinarySourceElement(public val binaryClass: KotlinJvmBinaryClass) : SourceElement {
override fun toString() = javaClass.name + ": " + binaryClass.toString()
}