10 overrides of IdentifierToken
Microsoft.CodeAnalysis.CSharp (6)
CodeGen\Optimizer.cs (1)
2248internal override SyntaxToken IdentifierToken
FlowAnalysis\NullableWalker.PlaceholderLocal.cs (1)
54internal override SyntaxToken IdentifierToken => throw ExceptionUtilities.Unreachable();
Symbols\Source\SourceLocalSymbol.cs (1)
279internal override SyntaxToken IdentifierToken
Symbols\Synthesized\SynthesizedLocal.cs (1)
123internal sealed override SyntaxToken IdentifierToken
Symbols\Synthesized\TypeSubstitutedLocalSymbol.cs (1)
82internal override SyntaxToken IdentifierToken
Symbols\UpdatedContainingSymbolLocal.cs (1)
88internal override SyntaxToken IdentifierToken => _underlyingLocal.IdentifierToken;
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (4)
Symbols\EEDisplayClassFieldLocalSymbol.cs (1)
45internal override SyntaxToken IdentifierToken
Symbols\EELocalConstantSymbol.cs (1)
57internal override SyntaxToken IdentifierToken
Symbols\EELocalSymbol.cs (1)
99internal override SyntaxToken IdentifierToken
Symbols\PlaceholderLocalSymbol.cs (1)
89internal override SyntaxToken IdentifierToken
4 references to IdentifierToken
Microsoft.CodeAnalysis.CSharp (4)
Binder\LocalScopeBinder.cs (2)
340if (result.IdentifierToken == nameToken) return (SourceLocalSymbol)result; 345if (local.IdentifierToken == nameToken)
Compilation\MemberSemanticModel.cs (1)
688if (local.IdentifierToken == declaredIdentifier)
Symbols\Synthesized\TypeSubstitutedLocalSymbol.cs (1)
84get { return _originalVariable.IdentifierToken; }