[jvm-lang] extract ExpectedParameter to separate file

This commit is contained in:
Daniil Ovchinnikov
2017-11-08 19:22:16 +03:00
parent 95898bf26e
commit 71a8b4b52b
2 changed files with 6 additions and 3 deletions

View File

@@ -17,7 +17,6 @@ package com.intellij.lang.jvm.actions
import com.intellij.lang.jvm.JvmModifier
import com.intellij.lang.jvm.types.JvmSubstitutor
import com.intellij.psi.codeStyle.SuggestedNameInfo
interface CreateMethodRequest {
@@ -35,5 +34,3 @@ interface CreateMethodRequest {
val targetSubstitutor: JvmSubstitutor
}
typealias ExpectedParameter = Pair<SuggestedNameInfo, ExpectedTypes>

View File

@@ -0,0 +1,6 @@
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.lang.jvm.actions
import com.intellij.psi.codeStyle.SuggestedNameInfo
typealias ExpectedParameter = Pair<SuggestedNameInfo, ExpectedTypes>