12 references to Type
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1713
=> node.Update(VisitToken(node.StackAllocKeyword), (TypeSyntax?)Visit(node.
Type
) ?? throw new ArgumentNullException("type"), (InitializerExpressionSyntax?)Visit(node.Initializer));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
4062
if (stackAllocKeyword != this.StackAllocKeyword || type != this.
Type
|| initializer != this.Initializer)
4072
public StackAllocArrayCreationExpressionSyntax WithStackAllocKeyword(SyntaxToken stackAllocKeyword) => Update(stackAllocKeyword, this.
Type
, this.Initializer);
4074
public StackAllocArrayCreationExpressionSyntax WithInitializer(InitializerExpressionSyntax? initializer) => Update(this.StackAllocKeyword, this.
Type
, initializer);
Binder\Binder_Expressions.cs (2)
4585
TypeSyntax typeSyntax = node.
Type
;
4699
? ((StackAllocArrayCreationExpressionSyntax)node).
Type
Syntax\SyntaxFactory.cs (1)
2269
if (((StackAllocArrayCreationExpressionSyntax)parent).
Type
== node)
Syntax\SyntaxFacts.cs (1)
120
return ((StackAllocArrayCreationExpressionSyntax)parent).
Type
== node;
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseCollectionExpression\CSharpUseCollectionExpressionForStackAllocDiagnosticAnalyzer.cs (2)
112
expression.
Type
.Span.End)));
137
static e => e.
Type
,
Microsoft.CodeAnalysis.CSharp.Features (2)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseCollectionExpression\CSharpUseCollectionExpressionForStackAllocDiagnosticAnalyzer.cs (2)
112
expression.
Type
.Span.End)));
137
static e => e.
Type
,