override fun actionPerformed()

in src/main/kotlin/com/intellij/ideolog/editorActions/JumpToSourceAction.kt [25:33]


  override fun actionPerformed(e: AnActionEvent) {
    val editor = e.dataContext.getData(CommonDataKeys.EDITOR) ?: return
    val project = e.dataContext.getData(CommonDataKeys.PROJECT) ?: return

    if(!canExecute(e))
      return

    LogJumpToSourceIntention.doIt(project, editor)
  }