Uast: parsing primary constructors superCalls (KT-21409)

This commit is contained in:
Nicolay Mitropolsky
2017-11-24 13:02:01 +03:00
committed by xiexed
parent a39f2f8271
commit 3bfa5c4706
8 changed files with 149 additions and 13 deletions
@@ -1,9 +1,5 @@
package org.jetbrains.uast.test.kotlin
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiElementVisitor
import org.jetbrains.kotlin.psi.KtFile
import org.jetbrains.kotlin.psi.KtVisitor
import org.junit.Test
class SimpleKotlinRenderLogTest : AbstractKotlinRenderLogTest() {
@@ -57,4 +53,7 @@ class SimpleKotlinRenderLogTest : AbstractKotlinRenderLogTest() {
@Test
fun testWhenAndDestructing() = doTest("WhenAndDestructing") { testName, file -> check(testName, file, false) }
@Test
fun testSuperCalls() = doTest("SuperCalls") { testName, file -> check(testName, file, false) }
}