10 references to ReferenceKeyword
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
103
case SyntaxKind.
ReferenceKeyword
:
Syntax\SyntaxKindFacts.cs (3)
102
case SyntaxKind.
ReferenceKeyword
:
1151
return SyntaxKind.
ReferenceKeyword
;
1691
case SyntaxKind.
ReferenceKeyword
:
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\KeywordRecommenders\ReferenceKeywordRecommender.cs (1)
14
: base(SyntaxKind.
ReferenceKeyword
, isValidInPreprocessorContext: true)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Generated\Syntax.Test.xml.Generated.cs (4)
734
=> InternalSyntaxFactory.ReferenceDirectiveTrivia(InternalSyntaxFactory.Token(SyntaxKind.HashToken), InternalSyntaxFactory.Token(SyntaxKind.
ReferenceKeyword
), InternalSyntaxFactory.Literal(null, "string", "string", null), InternalSyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
3828
Assert.Equal(SyntaxKind.
ReferenceKeyword
, node.ReferenceKeyword.Kind);
10950
=> SyntaxFactory.ReferenceDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
ReferenceKeyword
), SyntaxFactory.Literal("string", "string"), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
14044
Assert.Equal(SyntaxKind.
ReferenceKeyword
, node.ReferenceKeyword.Kind());
Syntax\SyntaxTests.cs (1)
337
for (int i = (int)SyntaxKind.ElifKeyword; i < (int)SyntaxKind.
ReferenceKeyword
; i++)