1 write to textLen
System.Data.Services (1)
System\Data\Services\Parsing\ExpressionLexer.cs (1)
70this.textLen = this.text.Length;
7 references to textLen
System.Data.Services (7)
System\Data\Services\Parsing\ExpressionLexer.cs (7)
138bool hasNext = this.textPos + 1 < this.textLen; 197while (this.textPos < this.textLen && this.ch != quote) 202if (this.textPos == this.textLen) 230if (this.textPos == this.textLen) 462if (this.textPos < this.textLen) 467this.ch = this.textPos < this.textLen ? this.text[this.textPos] : '\0'; 567this.ch = this.textPos < this.textLen ? this.text[this.textPos] : '\0';