diff options
Diffstat (limited to 'runtime/dex_file.h')
| -rw-r--r-- | runtime/dex_file.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/dex_file.h b/runtime/dex_file.h index 81a39afbee..eb3b210cd1 100644 --- a/runtime/dex_file.h +++ b/runtime/dex_file.h @@ -272,7 +272,9 @@ class DexFile { // can be any non-static method on any class (or interface) except // for “<init>”. kInvokeConstructor = 0x0006, // an invoker for a given constructor. - kLast = kInvokeConstructor + kInvokeDirect = 0x0007, // an invoker for a direct (special) method. + kInvokeInterface = 0x0008, // an invoker for an interface method. + kLast = kInvokeInterface }; // raw method_handle_item |