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

CouldNotInferReturnType() public static method

public static CouldNotInferReturnType ( Node node, string signature ) : CompilerError
node Node
signature string
return CompilerError
        public static CompilerError CouldNotInferReturnType(Node node, string signature)
        {
            return Instantiate("BCE0062", node, signature);
        }
CompilerErrorFactory