10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3116identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4910identifier = allowOptionalIdentifier ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5051identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5063identifier = CreateMissingIdentifierToken(); 5473var missingIdentifier = CreateMissingIdentifierToken(); 5925return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6004var result = CreateMissingIdentifierToken(); 6020return this.AddError(CreateMissingIdentifierToken(), code); 6117this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12698var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();