Boo.Lang.Compiler.Steps.InjectCallableConversions.AdaptorRecord.AdaptorRecord C# (CSharp) 메소드

AdaptorRecord() 공개 메소드

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