Method: CodeWeb::MethodCall#to_s
- Defined in:
- lib/code_web/method_call.rb
#to_s(spaces = '') ⇒ Object
used by debugging (not sure if this should be signature)
95 96 97 |
# File 'lib/code_web/method_call.rb', line 95 def to_s(spaces = '') "#{spaces}#{full_method_name}(#{args.map{|arg|arg.inspect}.join(", ")})#{" do" if is_yielding}" end |