@Nullable added

This commit is contained in:
Alex Tkachman
2012-08-29 13:01:46 +03:00
parent d878be2ac7
commit 5298851bbb
@@ -372,7 +372,7 @@ public abstract class CodegenContext {
}
@Override
public StackValue lookupInContext(DeclarationDescriptor d, StackValue result, GenerationState state, boolean ignoreNoOuter) {
public StackValue lookupInContext(DeclarationDescriptor d, @Nullable StackValue result, GenerationState state, boolean ignoreNoOuter) {
if (getContextDescriptor() == d) {
return StackValue.local(0, JetTypeMapper.OBJECT_TYPE);
}