16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser_Patterns.cs (1)
506
return
ScanType
(forPattern: true) != ScanTypeFlags.NotType;
Parser\LanguageParser.cs (15)
1552
if (
ScanType
() != ScanTypeFlags.NotType)
1735
return this.
ScanType
() != ScanTypeFlags.NotType && IsPossibleMemberName();
8613
ScanTypeFlags st = this.
ScanType
();
8999
ScanTypeFlags st = this.
ScanType
();
9570
this.
ScanType
() != ScanTypeFlags.NotType &&
9645
isDeclaration =
ScanType
() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken;
9657
this.
ScanType
() != ScanTypeFlags.NotType &&
9848
if (
ScanType
() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken)
10377
st = this.
ScanType
();
10610
return
ScanType
() is not ScanTypeFlags.NotType && isValidScopedTypeCase();
10854
if (
ScanType
() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken)
12788
this.
ScanType
() == ScanTypeFlags.NotType)
12927
var type = this.
ScanType
(forPattern);
13149
var st =
ScanType
();
14179
return this.
ScanType
() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;