16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1540if (ScanType() != ScanTypeFlags.NotType) 1660if (this.ScanType() == ScanTypeFlags.NotType) 8387ScanTypeFlags st = this.ScanType(); 8706ScanTypeFlags st = this.ScanType(); 9257this.ScanType() != ScanTypeFlags.NotType && 9332isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9344this.ScanType() != ScanTypeFlags.NotType && 9535if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10031st = this.ScanType(); 10259if (ScanType() is ScanTypeFlags.NotType || 10508if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12411this.ScanType() == ScanTypeFlags.NotType) 12548var type = this.ScanType(forPattern); 12755var st = ScanType(); 13742return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;