Boo.Lang.Compiler.Steps.ProcessMethodBodies.AssertTypeCompatibility C# (CSharp) 메소드

AssertTypeCompatibility() 개인적인 메소드

private AssertTypeCompatibility ( Node sourceNode, IType expectedType, IType actualType ) : bool
sourceNode Node
expectedType IType
actualType IType
리턴 bool
        bool AssertTypeCompatibility(Node sourceNode, IType expectedType, IType actualType)
        {
            return TypeChecker.AssertTypeCompatibility(sourceNode, expectedType, actualType);
        }
ProcessMethodBodies