1 write to CurrentStart
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\Tokenizer.cs (1)
197CurrentStart = CurrentLocation;
11 references to CurrentStart
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\Legacy\NativeCSharpTokenizer.cs (3)
561new SourceSpan(CurrentStart, contentLength: 1 /* end of file */))); 591new SourceSpan(CurrentStart, contentLength: 1 /* " */))); 608new SourceSpan(CurrentStart, contentLength: 1 /* end of file */)));
Language\Legacy\RoslynCSharpTokenizer.cs (6)
393new SourceSpan(CurrentStart, contentLength: expectedPrefix?.Length ?? 0 /* " */))); 500new SourceSpan(CurrentStart, contentLength: 1 /* end of file */))); 528new SourceSpan(CurrentStart, contentLength: trivia.FullSpan.Length))); 546new SourceSpan(CurrentStart, contentLength: trivia.FullSpan.Length))); 556new SourceSpan(CurrentStart, contentLength: directiveTrivia.FullSpan.Length))); 583var start = CurrentStart.AbsoluteIndex + i;
Language\Legacy\Tokenizer.cs (1)
91Debug.Assert(EndOfFile || !CurrentStart.Equals(CurrentLocation));
Language\Legacy\TokenizerBackedParser.cs (1)
83protected SourceLocation CurrentStart => _tokenizer.Tokenizer.CurrentStart;