Parent

Methods

Caricature::ClrClassMessenger

Encapsulates sending messages to CLR class or instance isolations

Public Instance Methods

deliver(method_name, return_type, *args, &b) click to toggle source

deliver the message to the receiving isolation

# File lib/caricature/clr/messenger.rb, line 7
    def deliver(method_name, return_type, *args, &b)
      exp = expectations.find(method_name, *args)
      if exp
        res = instance.__send__(method_name, *args, &b) if exp.super_before?
        res = exp.execute *args
        res = instance.__send__(method_name, *args, &b) if !exp.super_before? and exp.call_super?
        res
      else
        rt = nil
        is_value_type = return_type && return_type != System::Void.to_clr_type && return_type.is_value_type
        rt = System::Activator.create_instance(return_type) if is_value_type
        rt
      end
    end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.