1 override of SyntaxGeneratorInternal
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
41internal override SyntaxGeneratorInternal SyntaxGeneratorInternal
52 references to SyntaxGeneratorInternal
Microsoft.CodeAnalysis.Features (17)
ConvertAnonymousType\AbstractConvertAnonymousTypeToClassCodeRefactoringProvider.cs (1)
394generator.SyntaxGeneratorInternal,
ConvertTupleToStruct\AbstractConvertTupleToStructCodeRefactoringProvider.cs (1)
941generator.SyntaxGeneratorInternal,
GenerateConstructors\AbstractGenerateConstructorsCodeRefactoringProvider.ConstructorDelegatingCodeAction.cs (1)
66factory.SyntaxGeneratorInternal,
GenerateConstructors\AbstractGenerateConstructorsCodeRefactoringProvider.FieldDelegatingCodeAction.cs (1)
51factory.SyntaxGeneratorInternal,
GenerateEqualsAndGetHashCodeFromMembers\AbstractGenerateEqualsAndGetHashCodeService.cs (6)
72if (generator.SyntaxGeneratorInternal.SupportsPatterns(tree.Options)) 78generator.SyntaxGeneratorInternal.IsPatternExpression(objName, 79generator.SyntaxGeneratorInternal.DeclarationPattern(containingType, localName))); 162factory.SyntaxGeneratorInternal, hashCodeType, components); 167factory.SyntaxGeneratorInternal, compilation, namedType, members, useInt64: false); 201factory.SyntaxGeneratorInternal, compilation, namedType, members, useInt64: true);
GenerateType\AbstractGenerateTypeService.GenerateNamedType.cs (1)
222factory.SyntaxGeneratorInternal,
InitializeParameter\AbstractAddParameterCheckCodeRefactoringProvider.cs (1)
710(TExpressionSyntax)generator.CreateNullCheckExpression(generator.SyntaxGeneratorInternal, semanticModel, parameter.Name),
InvertConditional\AbstractInvertConditionalCodeRefactoringProvider.cs (1)
54editor.ReplaceNode(condition, editor.Generator.Negate(editor.Generator.SyntaxGeneratorInternal, condition, semanticModel, cancellationToken));
InvertIf\AbstractInvertIfCodeRefactoringProvider.cs (1)
308generator.SyntaxGeneratorInternal,
InvertLogical\AbstractInvertLogicalCodeRefactoringProvider.cs (2)
106var newBinary = generator.Negate(generator.SyntaxGeneratorInternal, binaryExpression, semanticModel, cancellationToken); 136generator.Negate(generator.SyntaxGeneratorInternal, expression, semanticModel, negateBinary: false, cancellationToken)));
Shared\Utilities\ExtractTypeHelpers.cs (1)
128return Formatter.Format(syntaxGenerator.SyntaxGeneratorInternal.TypeParameterList(typeParameterNames), document.Project.Solution.Services, formattingOptions, cancellationToken).ToString();
Microsoft.CodeAnalysis.Workspaces (35)
Editing\SyntaxGenerator.cs (35)
38internal SyntaxTrivia CarriageReturnLineFeed => this.SyntaxGeneratorInternal.CarriageReturnLineFeed; 39internal SyntaxTrivia ElasticCarriageReturnLineFeed => this.SyntaxGeneratorInternal.ElasticCarriageReturnLineFeed; 43=> this.SyntaxGeneratorInternal.RequiresExplicitImplementationForInterfaceMembers; 46=> SyntaxGeneratorInternal.SyntaxFacts; 51=> this.SyntaxGeneratorInternal.SingleLineComment(text); 195returnType: method.ReturnType.IsSystemVoid() ? null : this.SyntaxGeneratorInternal.TypeExpression(method.ReturnType, method.RefKind), 287returnType: method.ReturnType.IsSystemVoid() ? null : this.SyntaxGeneratorInternal.TypeExpression(method.ReturnType, method.RefKind), 392this.SyntaxGeneratorInternal.TypeExpression(property.Type, property.RefKind), 453this.SyntaxGeneratorInternal.TypeExpression(indexer.Type, indexer.RefKind), 1586=> SyntaxGeneratorInternal.YieldReturnStatement(expression); 1603=> this.SyntaxGeneratorInternal.SupportsThrowExpression(); 1611internal bool RequiresLocalDeclarationType() => SyntaxGeneratorInternal.RequiresLocalDeclarationType(); 1620=> SyntaxGeneratorInternal.LocalDeclarationStatement(type, identifier, initializer, isConst); 1623=> SyntaxGeneratorInternal.WithInitializer(variableDeclarator, initializer); 1626=> SyntaxGeneratorInternal.EqualsValueClause(operatorToken, value); 1766=> SyntaxGeneratorInternal.InterpolatedStringTextToken(content, value); 1768=> SyntaxGeneratorInternal.InterpolatedStringText(textToken); 1770=> SyntaxGeneratorInternal.Interpolation(syntaxNode); 1772=> SyntaxGeneratorInternal.InterpolatedStringExpression(startToken, content, endToken); 1774=> SyntaxGeneratorInternal.InterpolationAlignmentClause(alignment); 1776=> SyntaxGeneratorInternal.InterpolationFormatClause(format); 1783=> this.SyntaxGeneratorInternal.DefaultExpression(type); 1786=> this.SyntaxGeneratorInternal.DefaultExpression(type); 1838=> this.SyntaxGeneratorInternal.IdentifierName(identifier); 1841internal SyntaxToken Identifier(string identifier) => SyntaxGeneratorInternal.Identifier(identifier); 1936=> this.SyntaxGeneratorInternal.TypeExpression(typeSymbol); 2112=> this.SyntaxGeneratorInternal.BitwiseOrExpression(left, right); 2172=> this.SyntaxGeneratorInternal.MemberAccessExpression(expression, memberName); 2175=> this.SyntaxGeneratorInternal.MemberAccessExpressionWorker(expression, memberName); 2178=> SyntaxGeneratorInternal.RefExpression(expression); 2292=> this.SyntaxGeneratorInternal.CastExpression(type, expression); 2298=> this.SyntaxGeneratorInternal.CastExpression(type, expression); 2304=> this.SyntaxGeneratorInternal.ConvertExpression(type, expression); 2310=> this.SyntaxGeneratorInternal.ConvertExpression(type, expression); 2400=> SyntaxGeneratorInternal.AddParentheses(expression, includeElasticTrivia, addSimplifierAnnotation);