Initial version of (de)serialization test

This commit is contained in:
Andrey Breslav
2013-05-15 15:18:05 +04:00
committed by Alexander Udalov
parent 915b0b79a3
commit 5eb33372ae
2 changed files with 271 additions and 0 deletions
@@ -23,6 +23,14 @@ import org.jetbrains.jet.lang.resolve.name.FqName;
public interface ClassResolver {
ClassResolver EMPTY = new ClassResolver() {
@Nullable
@Override
public ClassDescriptor findClass(@NotNull FqName fqName) {
return null;
}
};
@Nullable
ClassDescriptor findClass(@NotNull FqName fqName);
}