Пример #1
0
        static public void Warning(int code, int level, Location loc, string format, params object[] args)
        {
            WarningMessage w = new WarningMessage(code, level, loc, String.Format(format, args), extra_information);

            extra_information.Clear();
            w.Print();
        }
Пример #2
0
        static public void Warning(int code, int level, Location loc, string message)
        {
            WarningMessage w = new WarningMessage(code, level, loc, message, extra_information);

            extra_information.Clear();
            w.Print();
        }
Пример #3
0
		static public void Warning (int code, int level, Location loc, string format, params object[] args)
		{
			WarningMessage w = new WarningMessage (code, level, loc, String.Format (format, args), extra_information);
			extra_information.Clear ();
			w.Print ();
		}
Пример #4
0
		static public void Warning (int code, int level, Location loc, string message)
		{
			WarningMessage w = new WarningMessage (code, level, loc, message, extra_information);
			extra_information.Clear ();
			w.Print ();
		}