Update to 171.SNAPSHOT to pick up fix for IDEA-169570; fix compilation

This commit is contained in:
Dmitry Jemerov
2017-03-15 17:31:43 +01:00
parent 1d29c81346
commit 12fc89f35d
6 changed files with 8 additions and 8 deletions
@@ -32,5 +32,6 @@ fun PsiElementFactory.createReferenceListWithRole(
Role.EXTENDS_LIST -> createClassFromText("class Foo extends $refListText {}", null).innerClasses[0].extendsList
Role.IMPLEMENTS_LIST -> createClassFromText("class Foo implements $refListText {}", null).innerClasses[0].implementsList
Role.EXTENDS_BOUNDS_LIST -> createTypeParameterFromText("T extends $refListText", null).extendsList
else -> throw UnsupportedOperationException("Unsupported role $role")
}
}