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
This commit is contained in:
JesusFreke@JesusFreke.com 2010-04-17 07:02:30 +00:00
parent fbea4e751f
commit 10b9349716

View File

@ -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
)