14 references to s_EmptyList
Microsoft.CodeAnalysis.CSharp.Workspaces (14)
CodeGeneration\CSharpSyntaxGenerator.cs (14)
2470
return ((MethodDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2472
return ((OperatorDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2474
return ((ConversionOperatorDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2476
return ((ConstructorDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2478
return ((DestructorDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2480
return ((LocalFunctionStatementSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2482
return (((AnonymousMethodExpressionSyntax)declaration).Body as BlockSyntax)?.Statements ??
s_EmptyList
;
2484
return (((ParenthesizedLambdaExpressionSyntax)declaration).Body as BlockSyntax)?.Statements ??
s_EmptyList
;
2486
return (((SimpleLambdaExpressionSyntax)declaration).Body as BlockSyntax)?.Statements ??
s_EmptyList
;
2491
return ((AccessorDeclarationSyntax)declaration).Body?.Statements ??
s_EmptyList
;
2493
return
s_EmptyList
;
2536
return list?.Accessors ??
s_EmptyList
;
2643
return accessor?.Body?.Statements ??
s_EmptyList
;
2649
return accessor?.Body?.Statements ??
s_EmptyList
;