Sha256: e2c517d30408e61582c1f698092d88ec14d8a112497b52806b8c57e2e18e5f3c
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
module Caricature # Encapsulates sending messages to CLR class or instance isolations class ClrClassMessenger < Messenger protected # deliver the message to the receiving isolation def internal_deliver(mode, method_name, return_type, *args, &b) exp = expectations.find(method_name, mode, *args) is_value_type = return_type && return_type != System::Void.to_clr_type && return_type.is_value_type res = nil 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? end res ||= System::Activator.create_instance(return_type) if is_value_type res end end # Encapsulates sending messages to CLR interface isolations class ClrInterfaceMessenger < Messenger protected # deliver the message to the receiving isolation def internal_deliver(mode, method_name, return_type, *args, &b) res = nil is_value_type = return_type && return_type != System::Void.to_clr_type && return_type.is_value_type exp = expectations.find(method_name, mode, *args) res = exp.execute *args if exp res ||= System::Activator.create_instance(return_type) if is_value_type res end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caricature-0.7.0 | lib/caricature/clr/messenger.rb |