16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1540if (ScanType() != ScanTypeFlags.NotType) 1660if (this.ScanType() == ScanTypeFlags.NotType) 8357ScanTypeFlags st = this.ScanType(); 8676ScanTypeFlags st = this.ScanType(); 9227this.ScanType() != ScanTypeFlags.NotType && 9302isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9314this.ScanType() != ScanTypeFlags.NotType && 9505if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10001st = this.ScanType(); 10229if (ScanType() is ScanTypeFlags.NotType || 10478if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12375this.ScanType() == ScanTypeFlags.NotType) 12512var type = this.ScanType(forPattern); 12719var st = ScanType(); 13706return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;