diff options
Diffstat (limited to 'tools/aidl/aidl_language.h')
-rw-r--r-- | tools/aidl/aidl_language.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/aidl/aidl_language.h b/tools/aidl/aidl_language.h index f203dbb..de1370c 100644 --- a/tools/aidl/aidl_language.h +++ b/tools/aidl/aidl_language.h @@ -57,9 +57,13 @@ typedef struct method_type { buffer_type open_paren_token; arg_type* args; buffer_type close_paren_token; + bool hasId; + buffer_type equals_token; + buffer_type id; // XXX missing comments/copy text here buffer_type semicolon_token; buffer_type* comments_token; // points into this structure, DO NOT DELETE + int assigned_id; } method_type; enum { |