Boo.Lang.Compiler.Steps.InjectCallableConversions.AdaptorRecord.AdaptorRecord C# (CSharp) Method

AdaptorRecord() public method

public AdaptorRecord ( ICallableType to, ICallableType from, ClassDefinition adaptor ) : System
to ICallableType
from ICallableType
adaptor Boo.Lang.Compiler.Ast.ClassDefinition
return System
            public AdaptorRecord(ICallableType to, ICallableType from, ClassDefinition adaptor)
            {
                To = to;
                From = from;
                Adaptor = adaptor;
            }
InjectCallableConversions.AdaptorRecord