-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathExpressionSubstitutor.cs
59 lines (48 loc) · 2.15 KB
/
ExpressionSubstitutor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Copyright (c) 2016 Denis Zykov, GameDevWare.com
This a part of "C# Eval()" Unity Asset - https://www.assetstore.unity3d.com/en/#!/content/56706
THIS SOFTWARE IS DISTRIBUTED "AS-IS" WITHOUT ANY WARRANTIES, CONDITIONS AND
REPRESENTATIONS WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE
IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY,
FITNESS FOR A PARTICULAR PURPOSE, DURABILITY, NON-INFRINGEMENT, PERFORMANCE
AND THOSE ARISING BY STATUTE OR FROM CUSTOM OR USAGE OF TRADE OR COURSE OF DEALING.
This source code is distributed via Unity Asset Store,
to use it in your project you should accept Terms of Service and EULA
https://unity3d.com/ru/legal/as_terms
*/
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
namespace GameDevWare.Dynamic.Expressions
{
internal class ExpressionSubstitutor : ExpressionVisitor
{
private readonly Dictionary<Expression, Expression> substitutions;
private ExpressionSubstitutor(Dictionary<Expression, Expression> substitutions)
{
if (substitutions == null) throw new ArgumentNullException("substitutions");
this.substitutions = substitutions;
}
protected override Expression VisitParameter(ParameterExpression parameterExpression)
{
var substitutionParameter = default(Expression);
if (this.substitutions.TryGetValue(parameterExpression, out substitutionParameter))
return substitutionParameter;
return base.VisitParameter(parameterExpression);
}
protected override Expression VisitConstant(ConstantExpression constantExpression)
{
var substitutionParameter = default(Expression);
if (this.substitutions.TryGetValue(constantExpression, out substitutionParameter))
return substitutionParameter;
return base.VisitConstant(constantExpression);
}
public static Expression Visit(Expression expression, Dictionary<Expression, Expression> substitutions)
{
if (expression == null) throw new ArgumentNullException("expression");
if (substitutions == null) throw new ArgumentNullException("substitutions");
var substitutor = new ExpressionSubstitutor(substitutions);
return substitutor.Visit(expression);
}
}
}