10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3209identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5005identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5164identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5176identifier = CreateMissingIdentifierToken(); 5587var missingIdentifier = CreateMissingIdentifierToken(); 6039return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6118var result = CreateMissingIdentifierToken(); 6134return this.AddError(CreateMissingIdentifierToken(), code); 6231this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12858var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();