Marked scripting points with // SCRIPT: markers.

This commit is contained in:
Ilya Ryzhenkov
2014-03-17 23:16:54 +04:00
committed by Andrey Breslav
parent 618aea6218
commit e49f4a0722
26 changed files with 39 additions and 1 deletions
@@ -117,7 +117,7 @@ public class IDELightClassGenerationSupport extends LightClassGenerationSupport
private static void forceResolvePackageDeclarations(@NotNull Collection<JetFile> files, @NotNull KotlinCodeAnalyzer session) {
for (JetFile file : files) {
// Scripts are not supported
// SCRIPT: not supported
if (file.isScript()) continue;
FqName packageFqName = file.getPackageFqName();