Exemplo n.º 1
0
 public ErrorInfo(int id, string messageId, WarningGroups group)
 {
     this.id        = id;
     this.messageId = messageId;
     this.severity  = ErrorSeverity.Warning;
     this.group     = (int)group;
 }
Exemplo n.º 2
0
        public TextErrorSink(TextWriter /*!*/ output, WarningGroups disabledGroups, int[] /*!*/ disabledWarnings)
            : base(disabledGroups, disabledWarnings)
        {
            if (output == null)
            {
                throw new ArgumentNullException("output");
            }

            this.output = output;
        }
Exemplo n.º 3
0
        public ErrorSink(WarningGroups disabledGroups, int[] /*!*/ disabledWarnings)
        {
            if (disabledWarnings == null)
            {
                throw new ArgumentNullException("disabledWarnings");
            }

            this.disabledGroups   = disabledGroups;
            this.disabledWarnings = disabledWarnings;
        }
Exemplo n.º 4
0
		public EvalErrorSink(int firstLineColumnDisplacement, WarningGroups disabledGroups, int[]/*!*/ disabledWarnings)
			: base(disabledGroups, disabledWarnings)
		{
			this.firstLineColumnDisplacement = firstLineColumnDisplacement;
		}
Exemplo n.º 5
0
		public WebErrorSink(WarningGroups disabledGroups, int[]/*!*/ disabledWarnings)
			: base(disabledGroups, disabledWarnings)
		{

		}
Exemplo n.º 6
0
		public TextErrorSink(TextWriter/*!*/ output, WarningGroups disabledGroups, int[]/*!*/ disabledWarnings)
			: base(disabledGroups, disabledWarnings)
		{
			if (output == null)
				throw new ArgumentNullException("output");
			
			this.output = output;
		}
Exemplo n.º 7
0
		public ErrorSink(WarningGroups disabledGroups, int[]/*!*/ disabledWarnings)
		{
			if (disabledWarnings == null)
				throw new ArgumentNullException("disabledWarnings");

			this.disabledGroups = disabledGroups;
			this.disabledWarnings = disabledWarnings;		
		}
Exemplo n.º 8
0
		public ErrorInfo(int id, string messageId, WarningGroups group)
		{
			this.id = id;
			this.messageId = messageId;
			this.severity = ErrorSeverity.Warning;
			this.group = (int)group;
		}
Exemplo n.º 9
0
 public WebErrorSink(WarningGroups disabledGroups, int[] /*!*/ disabledWarnings)
     : base(disabledGroups, disabledWarnings)
 {
 }
Exemplo n.º 10
0
 public EvalErrorSink(int firstLineColumnDisplacement, WarningGroups disabledGroups, int[] /*!*/ disabledWarnings)
     : base(disabledGroups, disabledWarnings)
 {
     this.firstLineColumnDisplacement = firstLineColumnDisplacement;
 }