File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
scala/com/github/vbmacher/intellij/cucumber/scala/search Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 11ext. versions = [
22 scala : ' 2.13' ,
33 scalaFull : ' 2.13.+' ,
4- gherkin : ' 231.8109.91 ' ,
5- idea : ' 2023.1.2 ' ,
6- scalaPlugin : ' 2023.1.18 ' ,
4+ gherkin : ' 232.6734.4 ' ,
5+ idea : ' 232.6734.9-EAP-SNAPSHOT ' ,
6+ scalaPlugin : ' 2023.2.3 ' ,
77 cucumber : ' 8.15.0' ,
88 junit : ' 4.13.2' ,
99 cucumberJunit : ' 7.12.0' ,
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ runIde {
4949}
5050
5151patchPluginXml {
52- sinceBuild = " 231.8109 "
53- untilBuild = " 231 .*"
52+ sinceBuild = " 232.6734 "
53+ untilBuild = " 232.6734 .*"
5454}
5555
5656buildSearchableOptions. enabled = false
Original file line number Diff line number Diff line change 1616
1717 <change-notes ><![CDATA[
1818 <ul>
19+ <li>232.6734.9-EAP-SNAPSHOT: Release for IntelliJ 2023.2 EAP (build 232.6734.9-EAP-SNAPSHOT)
20+ <ol>
21+ <li>Scala plugin 2023.2.3</li>
22+ <li>Gherkin plugin 232.6734.4</li>
23+ </ol>
24+ </li>
1925 <li>2023.1.2: Release for IntelliJ 2023.1.2 (build 231.9011.34)
2026 <ol>
2127 <li>Scala plugin 2023.1.18</li>
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ import com.intellij.psi.PsiElement
77case class StepDeclaration (element : PsiElement , stepName : String ) extends PomNamedTarget {
88 def isValid : Boolean = element.isValid
99
10- def navigate (requestFocus : Boolean ): Unit = {
10+ override def navigate (requestFocus : Boolean ): Unit = {
1111 Option (EditSourceUtil .getDescriptor(element)).foreach(_.navigate(requestFocus))
1212 }
1313
14- def canNavigate : Boolean = EditSourceUtil .canNavigate(element)
14+ override def canNavigate : Boolean = EditSourceUtil .canNavigate(element)
1515
16- def canNavigateToSource : Boolean = canNavigate()
16+ override def canNavigateToSource : Boolean = canNavigate()
1717
1818 def getName : String = stepName
1919}
You can’t perform that action at this time.
0 commit comments