9 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (9)
Parser\LanguageParser.cs (9)
4704identifier = this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4839identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 4851identifier = CreateMissingIdentifierToken(); 5277var missingIdentifier = CreateMissingIdentifierToken(); 5651return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 5730var result = CreateMissingIdentifierToken(); 5746return this.AddError(CreateMissingIdentifierToken(), code); 5836this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12284var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();