small rename to align has_locals and has_arguments

for semantic and code unification
This commit is contained in:
Torsten Ruger
2017-01-15 12:59:03 +02:00
parent 4095bb397f
commit a0cf5bffc0
3 changed files with 16 additions and 16 deletions

View File

@ -44,8 +44,8 @@ module Parfait
end
# determine whether this method has an argument by the name
def has_arg( name )
raise "has_arg #{name}.#{name.class}" unless name.is_a? Symbol
def has_argument( name )
raise "has_argument #{name}.#{name.class}" unless name.is_a? Symbol
index = arguments.variable_index( name )
index ? (index - 1) : index
end
@ -61,7 +61,7 @@ module Parfait
def argument_name( index )
arguments.names.get(index + 1)
end
def argument_type( index )
def arguments_type( index )
arguments.types.get(index + 1)
end