Move dependency on built-ins in IDE higher for common modules

See the comment in ModuleInfo
This commit is contained in:
Alexander Udalov
2017-04-14 19:44:11 +03:00
parent a96b67ea29
commit 134bec6de8
3 changed files with 33 additions and 30 deletions
@@ -51,7 +51,7 @@ private class TestModule(val dependsOnBuiltIns: Boolean) : ModuleInfo {
override fun dependencies() = listOf(this)
override fun dependencyOnBuiltIns() =
if (dependsOnBuiltIns)
ModuleInfo.DependenciesOnBuiltIns.LAST
ModuleInfo.DependencyOnBuiltIns.LAST
else
ModuleInfo.DependenciesOnBuiltIns.NONE
ModuleInfo.DependencyOnBuiltIns.NONE
}