10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3158identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4954identifier = identifierIsOptional ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5113identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5125identifier = CreateMissingIdentifierToken(); 5536var missingIdentifier = CreateMissingIdentifierToken(); 5988return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6067var result = CreateMissingIdentifierToken(); 6083return this.AddError(CreateMissingIdentifierToken(), code); 6180this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12772var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();