[SAM with receiver] Extract some constants to common module

This is needed to publish them into corresponding jar for IDE
This commit is contained in:
Dmitriy Novozhilov
2022-06-22 13:26:14 +03:00
committed by teamcity
parent ffc680f4a6
commit 04bf5bfe0b
2 changed files with 20 additions and 7 deletions
@@ -0,0 +1,14 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.samWithReceiver
object SamWithReceiverPluginNames {
const val PLUGIN_ID = "org.jetbrains.kotlin.samWithReceiver"
const val ANNOTATION_OPTION_NAME = "annotation"
const val PRESET_OPTION_NAME = "preset"
val SUPPORTED_PRESETS = emptyMap<String, List<String>>()
}