Boo.Lang.Compiler.CompilerErrorFactory.IncompatiblePartialDefinition C# (CSharp) Method

IncompatiblePartialDefinition() public static method

public static IncompatiblePartialDefinition ( Node node, string typeName, string expectedType, string actualType ) : CompilerError
node Node
typeName string
expectedType string
actualType string
return CompilerError
        public static CompilerError IncompatiblePartialDefinition(Node node, string typeName, string expectedType, string actualType)
        {
            return Instantiate("BCE0176", node, typeName, expectedType, actualType);
        }
CompilerErrorFactory