12 references to Type
Microsoft.CodeAnalysis.CSharp (5)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2050=> node.Update((TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
11886if (type != this.Type)
Binder\Binder_Constraints.cs (1)
255var typeSyntax = typeConstraintSyntax.Type;
Binder\LocalScopeBinder.cs (1)
247typeConstraint.Type.VisitRankSpecifiers((rankSpecifier, args) =>
Syntax\SyntaxFacts.cs (1)
164return ((TypeConstraintSyntax)parent).Type == node;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
src\roslyn\src\Analyzers\CSharp\CodeFixes\FixIncorrectConstraint\CSharpFixIncorrectConstraintCodeFixProvider.cs (2)
44if (constraint.Type is not IdentifierNameSyntax { Identifier.IsMissing: true } type) 91constraintSyntax.Type, newType
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\KeywordRecommenders\RefKeywordRecommender.cs (1)
149identifier.Parent is TypeConstraintSyntax typeConstraint && typeConstraint.Type == identifier &&
src\roslyn\src\Analyzers\CSharp\CodeFixes\FixIncorrectConstraint\CSharpFixIncorrectConstraintCodeFixProvider.cs (2)
44if (constraint.Type is not IdentifierNameSyntax { Identifier.IsMissing: true } type) 91constraintSyntax.Type, newType
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (1)
Microsoft.NetCore.Analyzers\Runtime\CSharpDetectPreviewFeatureAnalyzer.cs (1)
227TypeSyntax typeConstraintSyntaxType = typeConstraintSyntax.Type;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Rename\CSharpRenameRewriterLanguageService.cs (1)
1209nodeToSpeculate = typeConstraint.Type;