[Parcelize] Remove dependency from backend module to k2 module

This is needed to avoid dependencies on FIR classes inside Parcelize IDE
  plugin
This commit is contained in:
Dmitriy Novozhilov
2022-06-08 12:16:14 +03:00
committed by teamcity
parent 021e251143
commit 36a154507e
4 changed files with 5 additions and 6 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.parcelize.fir
import org.jetbrains.kotlin.GeneratedDeclarationKey
object ParcelizePluginKey : GeneratedDeclarationKey() {
override fun toString(): String {
return "FirParcelize"
}
}