3 writes to errors
System.Activities (3)
System\Activities\ExpressionParser\SourceExpressionException.cs (3)
38
this.
errors
= new CompilerError[errors.Count];
50
this.
errors
= new CompilerError[length];
69
this.
errors
= new CompilerError[0];
8 references to errors
System.Activities (8)
System\Activities\ExpressionParser\SourceExpressionException.cs (8)
39
errors.CopyTo(this.
errors
, 0);
59
this.
errors
[i] = new CompilerError(fileName, line, column, errorNumber, errorText);
67
if (this.
errors
== null)
71
return this.
errors
;
83
if (this.
errors
== null)
89
info.AddValue("count", this.
errors
.Length);
90
for (int i = 0; i < this.
errors
.Length; ++i)
92
CompilerError error = this.
errors
[i];