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

CustomWarning() public static method

public static CustomWarning ( LexicalInfo lexicalInfo, string msg ) : Boo.Lang.Compiler.CompilerWarning
lexicalInfo LexicalInfo
msg string
return Boo.Lang.Compiler.CompilerWarning
        public static CompilerWarning CustomWarning(LexicalInfo lexicalInfo, string msg)
        {
            return new CompilerWarning(lexicalInfo, msg);
        }

Same methods

CompilerWarningFactory::CustomWarning ( string msg ) : Boo.Lang.Compiler.CompilerWarning