[kotlin] KTIJ-31325 Moved UastCodeGenerationPlugin to ide-dependent module

This allows us to depend on ide modules in the implementation of UastCodeGeneration

GitOrigin-RevId: 45dfec8d574bed6455131e0192eb020e6e4cebb0
This commit is contained in:
Marat Dinmukhametov
2024-09-27 17:07:54 +03:00
committed by intellij-monorepo-bot
parent 0ac964b619
commit 6f565c6abf
5 changed files with 5 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
<orderEntry type="library" scope="TEST" name="kotlin-test" level="project" /> <orderEntry type="library" scope="TEST" name="kotlin-test" level="project" />
<orderEntry type="library" name="kotlin-stdlib" level="project" /> <orderEntry type="library" name="kotlin-stdlib" level="project" />
<orderEntry type="library" name="kotlinc.kotlin-compiler-common" level="project" /> <orderEntry type="library" name="kotlinc.kotlin-compiler-common" level="project" />
<orderEntry type="library" name="kotlinc.analysis-api" level="project" />
<orderEntry type="module" module-name="kotlin.base.util" /> <orderEntry type="module" module-name="kotlin.base.util" />
<orderEntry type="module" module-name="kotlin.base.facet" /> <orderEntry type="module" module-name="kotlin.base.facet" />
<orderEntry type="module" module-name="kotlin.base.analysis" /> <orderEntry type="module" module-name="kotlin.base.analysis" />
@@ -21,5 +22,6 @@
<orderEntry type="module" module-name="kotlin.uast.uast-kotlin" /> <orderEntry type="module" module-name="kotlin.uast.uast-kotlin" />
<orderEntry type="module" module-name="kotlin.gradle.gradle" scope="RUNTIME" /> <orderEntry type="module" module-name="kotlin.gradle.gradle" scope="RUNTIME" />
<orderEntry type="module" module-name="kotlin.base.code-insight" /> <orderEntry type="module" module-name="kotlin.base.code-insight" />
<orderEntry type="module" module-name="intellij.platform.uast.ide" />
</component> </component>
</module> </module>

View File

@@ -26,5 +26,6 @@
<orderEntry type="module" module-name="kotlin.base.util" /> <orderEntry type="module" module-name="kotlin.base.util" />
<orderEntry type="module" module-name="kotlin.refactorings.common" /> <orderEntry type="module" module-name="kotlin.refactorings.common" />
<orderEntry type="module" module-name="kotlin.base.analysis-api.utils" /> <orderEntry type="module" module-name="kotlin.base.analysis-api.utils" />
<orderEntry type="module" module-name="intellij.platform.uast.ide" />
</component> </component>
</module> </module>

View File

@@ -29,5 +29,6 @@
<orderEntry type="module" module-name="kotlin.code-insight.api" /> <orderEntry type="module" module-name="kotlin.code-insight.api" />
<orderEntry type="module" module-name="kotlin.refactorings.common" /> <orderEntry type="module" module-name="kotlin.refactorings.common" />
<orderEntry type="module" module-name="intellij.platform.lang.impl" /> <orderEntry type="module" module-name="intellij.platform.lang.impl" />
<orderEntry type="module" module-name="intellij.platform.uast.ide" />
</component> </component>
</module> </module>

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. // Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.uast.generate package org.jetbrains.uast.generate
import com.intellij.lang.Language import com.intellij.lang.Language