From 10b934971613bce125871847566c43400035d39d Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Sat, 17 Apr 2010 07:02:30 +0000 Subject: [PATCH] Use method_name instead of simple_name for the method branch of the type_field_method_literal rule git-svn-id: https://smali.googlecode.com/svn/trunk@710 55b6fa8a-2a1e-11de-a435-ffa8d773f76a --- smali/src/main/antlr3/org/jf/smali/smaliParser.g | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smali/src/main/antlr3/org/jf/smali/smaliParser.g b/smali/src/main/antlr3/org/jf/smali/smaliParser.g index f4470409..70df9ff6 100644 --- a/smali/src/main/antlr3/org/jf/smali/smaliParser.g +++ b/smali/src/main/antlr3/org/jf/smali/smaliParser.g @@ -471,9 +471,9 @@ enum_literal type_field_method_literal : reference_type_descriptor - ( ARROW simple_name - ( COLON nonvoid_type_descriptor -> ^(I_ENCODED_FIELD reference_type_descriptor simple_name nonvoid_type_descriptor) - | method_prototype -> ^(I_ENCODED_METHOD reference_type_descriptor simple_name method_prototype) + ( ARROW + ( simple_name COLON nonvoid_type_descriptor -> ^(I_ENCODED_FIELD reference_type_descriptor simple_name nonvoid_type_descriptor) + | method_name method_prototype -> ^(I_ENCODED_METHOD reference_type_descriptor method_name method_prototype) ) | -> reference_type_descriptor )