[groovy] delegate info: add default strategy value

This commit is contained in:
Daniil Ovchinnikov
2016-11-21 16:50:52 +03:00
parent a96758dfd7
commit 202e534f06
@@ -16,5 +16,6 @@
package org.jetbrains.plugins.groovy.lang.resolve.delegatesTo
import com.intellij.psi.PsiType
import groovy.lang.Closure
class DelegatesToInfo(val typeToDelegate: PsiType?, val strategy: Int)
class DelegatesToInfo(val typeToDelegate: PsiType?, val strategy: Int = Closure.OWNER_FIRST)