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