10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3204identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5000identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5159identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5171identifier = CreateMissingIdentifierToken(); 5582var missingIdentifier = CreateMissingIdentifierToken(); 6034return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6113var result = CreateMissingIdentifierToken(); 6129return this.AddError(CreateMissingIdentifierToken(), code); 6226this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12822var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();