Boo.Lang.Compiler.CompilerWarningFactory.InvalidEventUnsubscribe C# (CSharp) Method

InvalidEventUnsubscribe() public static method

public static InvalidEventUnsubscribe ( Node node, string eventName, CallableSignature expected ) : Boo.Lang.Compiler.CompilerWarning
node Node
eventName string
expected Boo.Lang.Compiler.TypeSystem.CallableSignature
return Boo.Lang.Compiler.CompilerWarning
        public static CompilerWarning InvalidEventUnsubscribe(Node node, string eventName, CallableSignature expected)
        {
            return new CompilerWarning("BCW0005", node.LexicalInfo, eventName, expected);
        }