11c023cfb2
This is needed because until we have modules and dependencies implemented in our IDEA plugin, the whole project always is analyzed to highlight any file in the project. This resulted in weird errors in different modules in Kotlin project because two declarations were found for each built-in class: the one in kotlin-runtime.jar and the one (totally unrelated) in the 'builtins' module
12 lines
394 B
XML
12 lines
394 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<module type="JAVA_MODULE" version="4">
|
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
<exclude-output />
|
|
<content url="file://$MODULE_DIR$" />
|
|
<orderEntry type="inheritedJdk" />
|
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
<orderEntry type="module" module-name="builtins" />
|
|
</component>
|
|
</module>
|
|
|