CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
EvaluateManagedBackingFieldsWalker.cs
Go to the documentation of this file.
2using Microsoft.CodeAnalysis;
3using Microsoft.CodeAnalysis.CSharp;
4using Microsoft.CodeAnalysis.CSharp.Syntax;
5
6namespace Csla.Analyzers
7{
8 internal sealed class EvaluateManagedBackingFieldsWalker
9 : CSharpSyntaxWalker
10 {
11 internal EvaluateManagedBackingFieldsWalker(SyntaxNode node, SemanticModel model, IFieldSymbol fieldSymbol)
12 {
13 (FieldSymbol, Model) = (fieldSymbol, model);
14 Visit(node);
15 }
16
17 public override void VisitInvocationExpression(InvocationExpressionSyntax node)
18 {
19 var invocationSymbol = Model.GetSymbolInfo(node).Symbol as IMethodSymbol;
20
21 if (invocationSymbol.IsPropertyInfoManagementMethod())
22 {
23 foreach (var argument in node.ArgumentList.Arguments)
24 {
25 var argumentSymbol = Model.GetSymbolInfo(argument.Expression).Symbol;
26 UsesField = argumentSymbol != null && Equals(argumentSymbol, FieldSymbol);
27 }
28 }
29 }
30
31 private SemanticModel Model { get; }
32 private IFieldSymbol FieldSymbol { get; }
33 public bool UsesField { get; private set; }
34 }
35}