When expression.

Fix object & enum references.
This commit is contained in:
Dmitry Petrov
2016-08-19 13:21:56 +03:00
committed by Dmitry Petrov
parent d6040d8570
commit b96626fd4c
14 changed files with 301 additions and 74 deletions
@@ -214,4 +214,16 @@ public class IrTextTestCaseGenerated extends AbstractIrTextTestCase {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/typeOperators.kt");
doTest(fileName);
}
@TestMetadata("values.kt")
public void testValues() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/values.kt");
doTest(fileName);
}
@TestMetadata("when.kt")
public void testWhen() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/when.kt");
doTest(fileName);
}
}