├── .github ├── dependabot.yml └── workflows │ └── buildAndPublish.yml ├── .gitignore ├── .run ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── config └── ktlint │ └── baseline.xml ├── detekt-config.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pic ├── apply_diffs.png ├── context_menu.png ├── copy_without_metadata.png ├── create-reproducer.png ├── green_master_actions.png ├── settings.png └── splitEditor.png ├── resources ├── META-INF │ ├── git4idea-integration.xml │ ├── plugin.xml │ └── pluginIcon.svg ├── inspectionDescriptions │ └── ParameterShouldBeContextParameter.html ├── intentionDescriptions │ └── CreateContextualOverloadIntention │ │ ├── after.kt.template │ │ ├── before.kt.template │ │ └── description.html └── messages │ └── MyBundle.properties ├── settings.gradle.kts ├── src └── org │ └── jetbrains │ └── kotlin │ └── test │ └── helper │ ├── KotlinTestDataFileEditorProvider.kt │ ├── MyBundle.kt │ ├── TestDataPluginSettings.kt │ ├── actions │ ├── ApplyFileDiffAction.kt │ ├── ChooseAdditionalFileAction.kt │ ├── CopyTextWithoutMetadataAction.kt │ ├── CreateReproducerCommitAction.kt │ ├── GeneratedTestComboBoxAction.kt │ ├── GradleOnlyAction.kt │ ├── LastUsedTestService.kt │ ├── ModifyTestFileActions.kt │ ├── RunAllAndApplyDiffsAction.kt │ ├── RunAllChangedTestsAction.kt │ ├── RunSelectedAndApplyDiffsAction.kt │ ├── RunSelectedFilesTestsAction.kt │ ├── collectTestMethods.kt │ └── git │ │ ├── KotlinMasterAction.kt │ │ ├── RebaseOnGreenMasterCommitAction.kt │ │ └── ResetMasterToGreenCommitAction.kt │ ├── completion │ └── CommentDirectiveCompletionContributor.kt │ ├── git │ └── GitCommandFacade.kt │ ├── gradle │ ├── computeGradleCommandLine.kt │ ├── generateTestsCommandLine.kt │ ├── gradleRunConfigUtils.kt │ └── gradleUtils.kt │ ├── inspections │ ├── OldPluginInstalledWarner.kt │ ├── ParameterShouldBeContextParameterInspection.kt │ └── UnusedDeclarationSuppressor.kt │ ├── intentions │ └── CreateContextualOverloadIntention.kt │ ├── reference │ ├── DirectiveReferenceContributor.kt │ ├── EnumValueReference.kt │ └── TestDirectiveReference.kt │ ├── runAnything │ └── TestGloballyRunAnythingProvider.kt │ ├── services │ └── TestDataRunnerService.kt │ ├── state │ └── PreviewEditorState.kt │ ├── testFileUtils.kt │ ├── testProxyUtils.kt │ ├── ui │ ├── SplitToolbarPanel.kt │ ├── TestDataEditor.kt │ ├── WidthAdjustingPanel.kt │ └── settings │ │ ├── AbstractSettingsPanel.kt │ │ ├── ExpandableCellEditor.kt │ │ ├── FilePathRenderer.kt │ │ ├── FileSettingsPanel.kt │ │ ├── RelatedFileSearchPathsPanel.kt │ │ ├── TestDataPathEntriesPanel.kt │ │ ├── TestTagsEntriesPanel.kt │ │ └── TwoColumnTableModel.kt │ └── utils.kt └── test └── org.jetbrains.kotlin.test.helper └── Tests.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/buildAndPublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/.github/workflows/buildAndPublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | .intellijPlatform/ 5 | /.kotlin/ 6 | -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/README.md -------------------------------------------------------------------------------- /config/ktlint/baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/config/ktlint/baseline.xml -------------------------------------------------------------------------------- /detekt-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/detekt-config.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /pic/apply_diffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/apply_diffs.png -------------------------------------------------------------------------------- /pic/context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/context_menu.png -------------------------------------------------------------------------------- /pic/copy_without_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/copy_without_metadata.png -------------------------------------------------------------------------------- /pic/create-reproducer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/create-reproducer.png -------------------------------------------------------------------------------- /pic/green_master_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/green_master_actions.png -------------------------------------------------------------------------------- /pic/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/settings.png -------------------------------------------------------------------------------- /pic/splitEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/pic/splitEditor.png -------------------------------------------------------------------------------- /resources/META-INF/git4idea-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/META-INF/git4idea-integration.xml -------------------------------------------------------------------------------- /resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /resources/inspectionDescriptions/ParameterShouldBeContextParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/inspectionDescriptions/ParameterShouldBeContextParameter.html -------------------------------------------------------------------------------- /resources/intentionDescriptions/CreateContextualOverloadIntention/after.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/intentionDescriptions/CreateContextualOverloadIntention/after.kt.template -------------------------------------------------------------------------------- /resources/intentionDescriptions/CreateContextualOverloadIntention/before.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/intentionDescriptions/CreateContextualOverloadIntention/before.kt.template -------------------------------------------------------------------------------- /resources/intentionDescriptions/CreateContextualOverloadIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/intentionDescriptions/CreateContextualOverloadIntention/description.html -------------------------------------------------------------------------------- /resources/messages/MyBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/resources/messages/MyBundle.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "kotlin-compiler-devkit" 2 | -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/KotlinTestDataFileEditorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/KotlinTestDataFileEditorProvider.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/MyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/MyBundle.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/TestDataPluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/TestDataPluginSettings.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/ApplyFileDiffAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/ApplyFileDiffAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/ChooseAdditionalFileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/ChooseAdditionalFileAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/CopyTextWithoutMetadataAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/CopyTextWithoutMetadataAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/CreateReproducerCommitAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/CreateReproducerCommitAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/GeneratedTestComboBoxAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/GeneratedTestComboBoxAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/GradleOnlyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/GradleOnlyAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/LastUsedTestService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/LastUsedTestService.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/ModifyTestFileActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/ModifyTestFileActions.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/RunAllAndApplyDiffsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/RunAllAndApplyDiffsAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/RunAllChangedTestsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/RunAllChangedTestsAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/RunSelectedAndApplyDiffsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/RunSelectedAndApplyDiffsAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/RunSelectedFilesTestsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/RunSelectedFilesTestsAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/collectTestMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/collectTestMethods.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/git/KotlinMasterAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/git/KotlinMasterAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/git/RebaseOnGreenMasterCommitAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/git/RebaseOnGreenMasterCommitAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/actions/git/ResetMasterToGreenCommitAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/actions/git/ResetMasterToGreenCommitAction.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/completion/CommentDirectiveCompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/completion/CommentDirectiveCompletionContributor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/git/GitCommandFacade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/git/GitCommandFacade.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/gradle/computeGradleCommandLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/gradle/computeGradleCommandLine.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/gradle/generateTestsCommandLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/gradle/generateTestsCommandLine.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/gradle/gradleRunConfigUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/gradle/gradleRunConfigUtils.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/gradle/gradleUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/gradle/gradleUtils.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/inspections/OldPluginInstalledWarner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/inspections/OldPluginInstalledWarner.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/inspections/ParameterShouldBeContextParameterInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/inspections/ParameterShouldBeContextParameterInspection.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/inspections/UnusedDeclarationSuppressor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/inspections/UnusedDeclarationSuppressor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/intentions/CreateContextualOverloadIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/intentions/CreateContextualOverloadIntention.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/reference/DirectiveReferenceContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/reference/DirectiveReferenceContributor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/reference/EnumValueReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/reference/EnumValueReference.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/reference/TestDirectiveReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/reference/TestDirectiveReference.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/runAnything/TestGloballyRunAnythingProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/runAnything/TestGloballyRunAnythingProvider.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/services/TestDataRunnerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/services/TestDataRunnerService.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/state/PreviewEditorState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/state/PreviewEditorState.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/testFileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/testFileUtils.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/testProxyUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/testProxyUtils.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/SplitToolbarPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/SplitToolbarPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/TestDataEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/TestDataEditor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/WidthAdjustingPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/WidthAdjustingPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/AbstractSettingsPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/AbstractSettingsPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/ExpandableCellEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/ExpandableCellEditor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/FilePathRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/FilePathRenderer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/FileSettingsPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/FileSettingsPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/RelatedFileSearchPathsPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/RelatedFileSearchPathsPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/TestDataPathEntriesPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/TestDataPathEntriesPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/TestTagsEntriesPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/TestTagsEntriesPanel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/ui/settings/TwoColumnTableModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/ui/settings/TwoColumnTableModel.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kotlin/test/helper/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/src/org/jetbrains/kotlin/test/helper/utils.kt -------------------------------------------------------------------------------- /test/org.jetbrains.kotlin.test.helper/Tests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kotlin-compiler-devkit/HEAD/test/org.jetbrains.kotlin.test.helper/Tests.kt --------------------------------------------------------------------------------