Minimal refactoring that eliminates importing Java's root namespace by default.

All tests pass. Some beautifying needed

#KT-1477 Fixed
This commit is contained in:
Andrey Breslav
2012-03-11 20:28:37 +04:00
parent 6bc3bbb53d
commit 3c71512850
10 changed files with 134 additions and 40 deletions
@@ -127,5 +127,14 @@ public final class AnalyzerFacadeForJS {
public void extendNamespaceScope(@NotNull BindingTrace trace, @NotNull NamespaceDescriptor namespaceDescriptor,
@NotNull WritableScope namespaceMemberScope) {
}
@Override
public NamespaceDescriptor getTopLevelNamespace(@NotNull String shortName) {
return null;
}
@Override
public void addAllTopLevelNamespacesTo(@NotNull Collection<? super NamespaceDescriptor> topLevelNamespaces) {
}
}
}