Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
OpAssignMethodConversionBinaryExpression.cs
Go to the documentation of this file.
2
4
6{
7 private readonly LambdaExpression _conversion;
8
10 : base(nodeType, left, right, type, method)
11 {
12 _conversion = conversion;
13 }
14
15 internal override LambdaExpression GetConversion()
16 {
17 return _conversion;
18 }
19}
OpAssignMethodConversionBinaryExpression(ExpressionType nodeType, Expression left, Expression right, Type type, MethodInfo method, LambdaExpression conversion)