49 writes to current
Microsoft.Build.Tasks.Core (49)
CSharptokenEnumerator.cs (25)
45
current
= new WhitespaceToken();
54
current
= new CommentToken();
66
current
= new CSharpTokenizer.EndOfFileInsideCommentToken();
70
current
= new CommentToken();
98
current
= new CSharpTokenizer.CharLiteralToken();
116
current
= new EndOfFileInsideStringToken();
121
current
= new StringLiteralToken();
144
current
= new CSharpTokenizer.UnrecognizedStringEscapeToken();
153
current
= new CSharpTokenizer.NewlineInsideStringToken();
162
current
= new StringLiteralToken();
180
current
= new ExpectedIdentifierToken();
196
current
= new KeywordToken();
210
current
= new IdentifierToken();
215
current
= new BooleanLiteralToken();
218
current
= new CSharpTokenizer.NullLiteralToken();
225
current
= new CSharpTokenizer.OpenScopeToken();
231
current
= new CSharpTokenizer.CloseScopeToken();
240
current
= new ExpectedValidHexDigitToken();
247
current
= new HexIntegerLiteralToken();
256
current
= new DecimalIntegerLiteralToken();
262
current
= new OperatorOrPunctuatorToken();
270
current
= new OpenConditionalDirectiveToken();
274
current
= new CloseConditionalDirectiveToken();
278
current
= new PreprocessorToken();
288
current
= new UnrecognizedToken();
tokenEnumerator.cs (1)
68
this.
current
= null;
VisualBasictokenEnumerator.cs (23)
71
current
= new VisualBasicTokenizer.LineContinuationToken();
79
current
= new WhitespaceToken();
86
current
= new VisualBasicTokenizer.LineTerminatorToken();
95
current
= new CommentToken();
117
current
= new ExpectedIdentifierToken();
132
current
= new ExpectedIdentifierToken();
147
current
= new ExpectedIdentifierToken();
160
current
= new KeywordToken();
165
current
= new IdentifierToken();
175
current
= new BooleanLiteralToken();
184
current
= new ExpectedValidHexDigitToken();
191
current
= new HexIntegerLiteralToken();
199
current
= new VisualBasicTokenizer.ExpectedValidOctalDigitToken();
206
current
= new VisualBasicTokenizer.OctalIntegerLiteralToken();
215
current
= new DecimalIntegerLiteralToken();
223
current
= new OpenConditionalDirectiveToken();
227
current
= new CloseConditionalDirectiveToken();
231
current
= new PreprocessorToken();
241
current
= new VisualBasicTokenizer.SeparatorToken();
247
current
= new OperatorToken();
265
current
= new EndOfFileInsideStringToken();
269
current
= new StringLiteralToken();
276
current
= new UnrecognizedToken();
8 references to current
Microsoft.Build.Tasks.Core (8)
CSharptokenEnumerator.cs (2)
122
current
.InnerText = _reader.GetCurrentMatchedString(startPosition).Substring(1);
211
current
.InnerText = identifier;
tokenEnumerator.cs (5)
46
if (found && this.
current
!= null)
48
this.
current
.Line = startLine;
52
if (this.
current
.InnerText == null)
54
this.
current
.InnerText = Reader.GetCurrentMatchedString(startPosition);
78
get { return
current
; }
VisualBasictokenEnumerator.cs (1)
170
current
.InnerText = identifierOrKeyword.Substring(1, identifierOrKeyword.Length - 2);