10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3218identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4988identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5147identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5159identifier = CreateMissingIdentifierToken(); 5566var missingIdentifier = CreateMissingIdentifierToken(); 6018return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6097var result = CreateMissingIdentifierToken(); 6113return this.AddError(CreateMissingIdentifierToken(), code); 6204this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12826var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();