public void AddRange(ParserError[] value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     for (int i = 0; i < value.Length; i++)
     {
         this.Add(value[i]);
     }
 }
 public ParserErrorCollection(ParserError[] value) {
     this.AddRange(value);
 }
Exemple #3
0
 public void Insert(int index, ParserError value)
 {
 }
Exemple #4
0
 public bool Contains(ParserError value)
 {
     return(default(bool));
 }
Exemple #5
0
		void ReportParseError (ParserError err)
		{

			if (reportParseError != null)
				reportParseError (err);
		}
		public void Insert (int index, ParserError error)
		{
			InnerList.Insert (index, error);
		}
		public void AddRange (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
 public void Remove(ParserError value) {
     List.Remove(value);
 }
 public ParserErrorCollection(ParserError[] value)
 {
 }
 public void Insert(int index, ParserError value)
 {
 }
 public int IndexOf(ParserError value)
 {
   return default(int);
 }
 public void CopyTo(ParserError[] array, int index)
 {
 }
 public bool Contains(ParserError value)
 {
   return default(bool);
 }
 public void AddRange(ParserError[] value)
 {
 }
 public bool Contains(ParserError value) {
     return List.Contains(value);
 }
 public int IndexOf(ParserError value) {
     return List.IndexOf(value);
 }
 public void Remove(ParserError value)
 {
 }
		public ParserErrorCollection (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
Exemple #19
0
 public bool Contains(ParserError value)
 {
     return(base.List.Contains(value));
 }
		public void CopyTo (ParserError[] errors, int index)
		{
			List.CopyTo (errors, index);
		}
Exemple #21
0
 public int IndexOf(ParserError value)
 {
     return(base.List.IndexOf(value));
 }
 public int Add(ParserError value)
 {
   return default(int);
 }
Exemple #23
0
 public void Insert(int index, ParserError value)
 {
     base.List.Insert(index, value);
 }
Exemple #24
0
 public int Add(ParserError value)
 {
     return(default(int));
 }
Exemple #25
0
 public void Remove(ParserError value)
 {
     base.List.Remove(value);
 }
Exemple #26
0
 public int IndexOf(ParserError value)
 {
     return(default(int));
 }
Exemple #27
0
 public int Add(ParserError value)
 {
     return(List.Add(value));
 }
Exemple #28
0
 public void Remove(ParserError value)
 {
 }
Exemple #29
0
 public bool Contains(ParserError value)
 {
     return(InnerList.Contains(value));
 }
 public int Add(ParserError value) {
     return List.Add(value);
 }
Exemple #31
0
 public int IndexOf(ParserError value)
 {
     return(InnerList.IndexOf(value));
 }
 public void CopyTo(ParserError[] array, int index) {
     List.CopyTo(array, index);
 }
Exemple #33
0
 public void Insert(int index, ParserError value)
 {
     InnerList.Insert(index, value);
 }
 public void Insert(int index, ParserError value) {
     List.Insert(index, value);
 }
Exemple #35
0
 public void Remove(ParserError value)
 {
     InnerList.Remove(value);
 }
		public virtual void ReportParseError (ParserError error)
		{
		}
Exemple #37
0
 public int Add(ParserError error)
 {
     return(List.Add(error));
 }
		public int Add (ParserError error)
		{
			return List.Add (error);
		}
Exemple #39
0
 public bool Contains(ParserError error)
 {
     return(InnerList.Contains(error));
 }
		public bool Contains (ParserError error)
		{
			return InnerList.Contains (error);
		}
Exemple #41
0
 public int IndexOf(ParserError error)
 {
     return(InnerList.IndexOf(error));
 }
		public int IndexOf (ParserError error)
		{
			return InnerList.IndexOf (error);
		}
Exemple #43
0
 public void Insert(int index, ParserError error)
 {
     InnerList.Insert(index, error);
 }
		public void Remove (ParserError error)
		{
			InnerList.Remove (error);
		}
Exemple #45
0
 public void Remove(ParserError error)
 {
     InnerList.Remove(error);
 }