@Nullable annotations

This commit is contained in:
Stepan Koltsov
2012-01-15 19:50:52 +04:00
parent 5f44c17b85
commit 0c4936981a
@@ -36,6 +36,7 @@ public abstract class CodegenContext {
private final DeclarationDescriptor contextType;
private final OwnerKind contextKind;
@Nullable
private final CodegenContext parentContext;
public final ObjectOrClosureCodegen closure;
@@ -142,6 +143,7 @@ public abstract class CodegenContext {
return frameMap;
}
@Nullable
public CodegenContext getParentContext() {
return parentContext;
}