Adjust KotlinSuppressIntentionAction to syntax with '@'
This commit is contained in:
@@ -226,9 +226,9 @@ public class JetPsiFactory(private val project: Project) {
|
||||
return createProperty(text + " val x").getModifierList()!!
|
||||
}
|
||||
|
||||
public fun createAnnotation(text: String): JetAnnotation {
|
||||
public fun createAnnotationEntry(text: String): JetAnnotationEntry {
|
||||
val modifierList = createProperty(text + " val x").getModifierList()
|
||||
return modifierList!!.getAnnotations().first()
|
||||
return modifierList!!.getAnnotationEntries().first()
|
||||
}
|
||||
|
||||
public fun createEmptyBody(): JetBlockExpression {
|
||||
|
||||
Reference in New Issue
Block a user