mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
[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:
committed by
intellij-monorepo-bot
parent
ad36587b52
commit
d274c9c258
@@ -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?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user