10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3204identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4974identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5133identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5145identifier = CreateMissingIdentifierToken(); 5552var missingIdentifier = CreateMissingIdentifierToken(); 6004return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6083var result = CreateMissingIdentifierToken(); 6099return this.AddError(CreateMissingIdentifierToken(), code); 6196this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12818var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();