16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1541if (ScanType() != ScanTypeFlags.NotType) 1660if (this.ScanType() == ScanTypeFlags.NotType) 8286ScanTypeFlags st = this.ScanType(); 8605ScanTypeFlags st = this.ScanType(); 9156this.ScanType() != ScanTypeFlags.NotType && 9231isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9243this.ScanType() != ScanTypeFlags.NotType && 9434if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 9930st = this.ScanType(); 10148if (ScanType() == ScanTypeFlags.NotType || 10381if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12277if (this.ScanType() == ScanTypeFlags.NotType) 12415var type = this.ScanType(forPattern); 12622var st = ScanType(); 13609return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;