9 references to CreateMissingIdentifierToken
Microsoft.CodeAnalysis.CSharp (9)
Parser\LanguageParser.cs (9)
4655identifier = this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected); 4867identifierOrThisOpt == null ? CreateMissingIdentifierToken() : identifierOrThisOpt, 4879identifier = CreateMissingIdentifierToken(); 5281var missingIdentifier = CreateMissingIdentifierToken(); 5655return _syntaxFactory.IdentifierName(CreateMissingIdentifierToken()); 5734var result = CreateMissingIdentifierToken(); 5750return this.AddError(CreateMissingIdentifierToken(), code); 5833this.AddError(CreateMissingIdentifierToken(), ErrorCode.ERR_IdentifierExpected)); 12118var identifier = this.IsTrueIdentifier() ? this.EatToken() : CreateMissingIdentifierToken();