renames Typed to Vm
This commit is contained in:
12
lib/vm/tree/call_site.rb
Normal file
12
lib/vm/tree/call_site.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
module Vm
|
||||
module Tree
|
||||
class CallSite < Expression
|
||||
attr_accessor :name , :receiver , :arguments
|
||||
|
||||
def to_s
|
||||
str = receiver ? "#{receiver}.#{name}" : name.to_s
|
||||
str + arguments.collect{|a| a.to_s }.join(",")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user