Added "flags" field to JetConstructor property.

This commit is contained in:
Evgeny Gerashchenko
2012-06-15 19:16:51 +04:00
parent 773cfbaec5
commit e75f9aee53
2 changed files with 8 additions and 1 deletions
@@ -63,7 +63,8 @@ public class JvmStdlibNames {
* @see JetConstructor#hidden()
*/
public static final String JET_CONSTRUCTOR_HIDDEN_FIELD = "hidden";
public static final String JET_CONSTRUCTOR_FLAGS_FIELD = "flags";
public static final JvmClassName JET_CLASS = JvmClassName.byFqNameWithoutInnerClasses("jet.runtime.typeinfo.JetClass");
@@ -24,4 +24,10 @@ public @interface JetConstructor {
* @deprecated Some time later all constructors will be visible
*/
boolean hidden() default false;
/**
* See JvmStdlibNames
* @return flags for method
*/
int flags() default 0;
}