renaming methods args and frame

to arguments_type and frame_type, because that is what they are
In honour of setup bug, where the types of those types were loaded,
instead of just them types
This commit is contained in:
Torsten Ruger
2018-04-05 12:22:14 +03:00
parent cf6636ddda
commit ee0a1ca823
8 changed files with 47 additions and 47 deletions

View File

@ -72,11 +72,11 @@ module Mom
return variable_name if variable_name.is_a?(Integer)
case object
when :frame
type = compiler.method.frame
type = compiler.method.frame_type
when :message , :next_message , :caller
type = Parfait.object_space.get_class_by_name(:Message).instance_type
when :arguments
type = compiler.method.arguments
type = compiler.method.arguments_type
when :receiver
type = compiler.method.for_type
when Parfait::Object