Rename: SIGNATURES -> LIGHT_CLASSES

This commit is contained in:
Andrey Breslav
2013-10-09 19:09:36 +04:00
parent 1819825e54
commit 94ef5cb19b
8 changed files with 11 additions and 11 deletions
@@ -33,7 +33,7 @@ import org.jetbrains.jet.codegen.ClassBuilderMode;
@NotNull
@Override
public ClassBuilderMode getClassBuilderMode() {
return ClassBuilderMode.SIGNATURES;
return ClassBuilderMode.LIGHT_CLASSES;
}
@Override
@@ -226,7 +226,7 @@ public class LightClassUtil {
//noinspection unchecked
if (PsiTreeUtil.getParentOfType(declaration, JetFunction.class, JetProperty.class) != null) {
// Can't get wrappers for internal declarations. Their classes are not generated during calcStub
// with ClassBuilderMode.SIGNATURES mode, and this produces "Class not found exception" in getDelegate()
// with ClassBuilderMode.LIGHT_CLASSES mode, and this produces "Class not found exception" in getDelegate()
return null;
}