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

EventTypeIsNotCallable() public static method

public static EventTypeIsNotCallable ( Node node, IType typeName ) : CompilerError
node Node
typeName IType
return CompilerError
        public static CompilerError EventTypeIsNotCallable(Node node, IType typeName)
        {
            return Instantiate("BCE0082", node, typeName, LanguageAmbiance.CallableKeyword);
        }
CompilerErrorFactory