1 write to _token
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Syntax\SyntaxNodeOrToken.cs (1)
52_token = token;
22 references to _token
Microsoft.CodeAnalysis.Razor.Compiler (22)
Language\Syntax\SyntaxNodeOrToken.cs (22)
58public SyntaxKind Kind => _token?.Kind ?? _nodeOrParent?.Kind ?? 0; 66public bool IsMissing => _token?.IsMissing ?? _nodeOrParent?.IsMissing ?? false; 71public SyntaxNode? Parent => _token != null ? _nodeOrParent : _nodeOrParent?.Parent; 73internal GreenNode? UnderlyingNode => _token ?? _nodeOrParent?.Green; 86internal int Width => _token?.Width ?? _nodeOrParent?.Width ?? 0; 109return _token != null ? new SyntaxToken(_nodeOrParent, _token, Position, _tokenIndex) : default; 133return _token != null ? null : _nodeOrParent; 169if (_token != null) 193if (_token != null) 217if (_token != null) 219return _token.ToString(); 238if (_token != null) 240return _token.ContainsDiagnostics; 260if (_token != null) 281(_nodeOrParent == other._nodeOrParent && _token == other._token && _position == other._position && _tokenIndex == other._tokenIndex) == 282(_nodeOrParent == other._nodeOrParent && _token == other._token && _tokenIndex == other._tokenIndex)); 285_token == other._token && 321hash.Add(_token);