10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3171identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4967identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5126identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5138identifier = CreateMissingIdentifierToken(); 5549var missingIdentifier = CreateMissingIdentifierToken(); 6001return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6080var result = CreateMissingIdentifierToken(); 6096return this.AddError(CreateMissingIdentifierToken(), code); 6193this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12785var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();