Basic support of partially specified type arguments though a new underscore operator for type arguments

^KT-13394
This commit is contained in:
Victor Petukhov
2021-10-21 14:23:25 +03:00
parent e057831f7f
commit b69fb6779f
35 changed files with 1212 additions and 9 deletions
@@ -731,6 +731,26 @@ public class ParsingTestGenerated extends AbstractParsingTest {
runTest("compiler/testData/psi/TypealiasIsKeyword.kt");
}
@TestMetadata("UnderscoredTypeArgumentsOfCall.kt")
public void testUnderscoredTypeArgumentsOfCall() throws Exception {
runTest("compiler/testData/psi/UnderscoredTypeArgumentsOfCall.kt");
}
@TestMetadata("UnderscoredTypeArgumentsOfCallIllegal.kt")
public void testUnderscoredTypeArgumentsOfCallIllegal() throws Exception {
runTest("compiler/testData/psi/UnderscoredTypeArgumentsOfCallIllegal.kt");
}
@TestMetadata("UnderscoredTypeArgumentsOfType.kt")
public void testUnderscoredTypeArgumentsOfType() throws Exception {
runTest("compiler/testData/psi/UnderscoredTypeArgumentsOfType.kt");
}
@TestMetadata("UnderscoredTypeParameters.kt")
public void testUnderscoredTypeParameters() throws Exception {
runTest("compiler/testData/psi/UnderscoredTypeParameters.kt");
}
@TestMetadata("UnsignedLiteral.kt")
public void testUnsignedLiteral() throws Exception {
runTest("compiler/testData/psi/UnsignedLiteral.kt");