Support for unary expressions

This commit is contained in:
Natalia Ukhorskaya
2013-11-08 16:46:13 +04:00
parent b7b957ffd2
commit 96dc8b42bb
7 changed files with 112 additions and 1 deletions
@@ -198,6 +198,11 @@ public class AnnotationParameterTestGenerated extends AbstractAnnotationParamete
doTest("compiler/testData/resolveAnnotations/parameters/expressions/multilineString.kt");
}
@TestMetadata("not.kt")
public void testNot() throws Exception {
doTest("compiler/testData/resolveAnnotations/parameters/expressions/not.kt");
}
@TestMetadata("orOr.kt")
public void testOrOr() throws Exception {
doTest("compiler/testData/resolveAnnotations/parameters/expressions/orOr.kt");
@@ -233,6 +238,16 @@ public class AnnotationParameterTestGenerated extends AbstractAnnotationParamete
doTest("compiler/testData/resolveAnnotations/parameters/expressions/strings.kt");
}
@TestMetadata("unaryMinus.kt")
public void testUnaryMinus() throws Exception {
doTest("compiler/testData/resolveAnnotations/parameters/expressions/unaryMinus.kt");
}
@TestMetadata("unaryPlus.kt")
public void testUnaryPlus() throws Exception {
doTest("compiler/testData/resolveAnnotations/parameters/expressions/unaryPlus.kt");
}
}
public static Test suite() {