10 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (10)
Parser\LanguageParser.cs (10)
3116identifierOrThisOpt ??= this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4912identifier = allowOptionalIdentifier ? null : this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 5071identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 5083identifier = CreateMissingIdentifierToken(); 5493var missingIdentifier = CreateMissingIdentifierToken(); 5945return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 6024var result = CreateMissingIdentifierToken(); 6040return this.AddError(CreateMissingIdentifierToken(), code); 6137this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12729var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();