diff options
Diffstat (limited to 'libdexfile/dex/modifiers.h')
-rw-r--r-- | libdexfile/dex/modifiers.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libdexfile/dex/modifiers.h b/libdexfile/dex/modifiers.h index 5caa402d51..918feb34f4 100644 --- a/libdexfile/dex/modifiers.h +++ b/libdexfile/dex/modifiers.h @@ -55,6 +55,9 @@ static constexpr uint32_t kAccSkipAccessChecks = 0x00080000; // method (ru // Used by a class to denote that the verifier has attempted to check it at least once. static constexpr uint32_t kAccVerificationAttempted = 0x00080000; // class (runtime) static constexpr uint32_t kAccSkipHiddenapiChecks = 0x00100000; // class (runtime) +// Used by a class to denote that this class and any objects with this as a +// declaring-class/super-class are to be considered obsolete, meaning they should not be used by. +static constexpr uint32_t kAccObsoleteObject = 0x00200000; // class (runtime) // This is set by the class linker during LinkInterfaceMethods. It is used by a method to represent // that it was copied from its declaring class into another class. All methods marked kAccMiranda // and kAccDefaultConflict will have this bit set. Any kAccDefault method contained in the methods_ |