9 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (9)
Parser\LanguageParser.cs (9)
4703identifier = this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4841identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 4853identifier = CreateMissingIdentifierToken(); 5280var missingIdentifier = CreateMissingIdentifierToken(); 5654return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 5733var result = CreateMissingIdentifierToken(); 5749return this.AddError(CreateMissingIdentifierToken(), code); 5839this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12260var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();