Boo.Lang.Compiler.Steps.ProcessMethodBodies.AssertTypeCompatibility C# (CSharp) Method

AssertTypeCompatibility() private method

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