summaryrefslogtreecommitdiff
path: root/plugins/kotlin/performance-tests/test/org/jetbrains/kotlin/idea/perf/common/ProjectAction.kt
blob: 4d9d12f71b14c9eeb52f0a84d35a9112e4bb1fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.kotlin.idea.perf.common

sealed class ProjectAction

data class HighlightFile(val filePath: String) : ProjectAction()

data class TypeAndAutocompleteInFile(
    val filePath: String,
    val typeAfter: String,
    val textToType: String,
    val expectedLookupElements: List<String>,
    val note: String? = null
) : ProjectAction()