[uast] Relax return type on createStringLiteralExpression

Changes the return type of `createStringLiteralExpression` to account for Kotlin having polyadic string literal implementation by default. #KTIJ-27448

GitOrigin-RevId: 0797f4ea1f935ca29725f3834c535c3e60f9db36
This commit is contained in:
Bart van Helvert
2023-10-28 13:05:52 +02:00
committed by intellij-monorepo-bot
parent ad36587b52
commit d274c9c258
3 changed files with 7 additions and 6 deletions

View File

@@ -183,7 +183,7 @@ interface UastElementFactory {
fun createIfExpression(condition: UExpression, thenBranch: UExpression, elseBranch: UExpression?, context: PsiElement?): UIfExpression?
fun createStringLiteralExpression(text: String, context: PsiElement?): ULiteralExpression?
fun createStringLiteralExpression(text: String, context: PsiElement?): UExpression?
fun createLongConstantExpression(long: Long, context: PsiElement?): UExpression?