11 references to ImplicitStackAllocArrayCreationExpression
Microsoft.CodeAnalysis.CSharp (7)
_generated\1\Syntax.xml.Internal.Generated.cs (2)
30080
return new ImplicitStackAllocArrayCreationExpressionSyntax(SyntaxKind.
ImplicitStackAllocArrayCreationExpression
, stackAllocKeyword, openBracketToken, closeBracketToken, initializer, this.context);
35507
return new ImplicitStackAllocArrayCreationExpressionSyntax(SyntaxKind.
ImplicitStackAllocArrayCreationExpression
, stackAllocKeyword, openBracketToken, closeBracketToken, initializer);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
4081
/// <item><description><see cref="SyntaxKind.
ImplicitStackAllocArrayCreationExpression
"/></description></item>
Binder\Binder_Expressions.cs (3)
652
case SyntaxKind.
ImplicitStackAllocArrayCreationExpression
:
4754
Debug.Assert(node.IsKind(SyntaxKind.
ImplicitStackAllocArrayCreationExpression
) || node.IsKind(SyntaxKind.StackAllocArrayCreationExpression));
4791
bool isInferred = node.IsKind(SyntaxKind.
ImplicitStackAllocArrayCreationExpression
);
Parser\LanguageParser.cs (1)
11368
case SyntaxKind.
ImplicitStackAllocArrayCreationExpression
:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseCollectionExpression\CSharpUseCollectionExpressionForStackAllocDiagnosticAnalyzer.cs (1)
38
context.RegisterSyntaxNodeAction(context => AnalyzeImplicitStackAllocExpression(context, expressionType), SyntaxKind.
ImplicitStackAllocArrayCreationExpression
);
Microsoft.CodeAnalysis.CSharp.Features (3)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (2)
1776
case SyntaxKind.
ImplicitStackAllocArrayCreationExpression
:
2507
if (node.Kind() is SyntaxKind.StackAllocArrayCreationExpression or SyntaxKind.
ImplicitStackAllocArrayCreationExpression
)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseCollectionExpression\CSharpUseCollectionExpressionForStackAllocDiagnosticAnalyzer.cs (1)
38
context.RegisterSyntaxNodeAction(context => AnalyzeImplicitStackAllocExpression(context, expressionType), SyntaxKind.
ImplicitStackAllocArrayCreationExpression
);