Method: Ruby::Call#initialize

Defined in:
lib/ruby/call.rb

#initialize(target, separator, identifier, arguments = nil, block = nil) ⇒ Call

Returns a new instance of Call.



7
8
9
10
11
12
13
# File 'lib/ruby/call.rb', line 7

def initialize(target, separator, identifier, arguments = nil, block = nil)
  self.target = target
  self.separator = separator
  self.identifier = identifier
  self.arguments = arguments
  self.block = block
end