File: ExpressionUtilities.cs

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (1985 lines) | stat: -rw-r--r-- 91,859 bytes parent folder | download | duplicates (7)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

namespace System.Activities
{
    using System;
    using System.Collections.ObjectModel;
    using System.ComponentModel;
    using System.Linq;
    using System.Linq.Expressions;
    using System.Reflection;
    using System.Runtime;
    using System.Runtime.Serialization;
    using System.Collections.Generic;
    using System.Diagnostics.CodeAnalysis;
    using System.Activities.XamlIntegration;

    static class ExpressionUtilities
    {
        public static ParameterExpression RuntimeContextParameter = Expression.Parameter(typeof(ActivityContext), "context");
        static Assembly linqAssembly = typeof(Func<>).Assembly;
        static MethodInfo createLocationFactoryGenericMethod = typeof(ExpressionUtilities).GetMethod("CreateLocationFactory");
        static MethodInfo propertyDescriptorGetValue; // PropertyDescriptor.GetValue


        // Types cached for use in TryRewriteLambdaExpression
        static Type inArgumentGenericType = typeof(InArgument<>);
        static Type outArgumentGenericType = typeof(OutArgument<>);
        static Type inOutArgumentGenericType = typeof(InOutArgument<>);
        static Type variableGenericType = typeof(Variable<>);
        static Type delegateInArgumentGenericType = typeof(DelegateInArgument<>);
        static Type delegateOutArgumentGenericType = typeof(DelegateOutArgument<>);
        static Type activityContextType = typeof(ActivityContext);
        static Type locationReferenceType = typeof(LocationReference);
        static Type runtimeArgumentType = typeof(RuntimeArgument);
        static Type argumentType = typeof(Argument);
        static Type variableType = typeof(Variable);
        static Type delegateArgumentType = typeof(DelegateArgument);

        // MethodInfos cached for use in TryRewriteLambdaExpression
        static MethodInfo activityContextGetValueGenericMethod = typeof(ActivityContext).GetMethod("GetValue", new Type[] { typeof(LocationReference) });
        static MethodInfo activityContextGetLocationGenericMethod = typeof(ActivityContext).GetMethod("GetLocation", new Type[] { typeof(LocationReference) });
        static MethodInfo locationReferenceGetLocationMethod = typeof(LocationReference).GetMethod("GetLocation", new Type[] { typeof(ActivityContext) });
        static MethodInfo argumentGetLocationMethod = typeof(Argument).GetMethod("GetLocation", new Type[] { typeof(ActivityContext) });
        static MethodInfo variableGetMethod = typeof(Variable).GetMethod("Get", new Type[] { typeof(ActivityContext) });
        static MethodInfo delegateArgumentGetMethod = typeof(DelegateArgument).GetMethod("Get", new Type[] { typeof(ActivityContext) });

        static MethodInfo PropertyDescriptorGetValue
        {
            get
            {
                if (propertyDescriptorGetValue == null)
                {
                    propertyDescriptorGetValue = typeof(PropertyDescriptor).GetMethod("GetValue");
                }

                return propertyDescriptorGetValue;
            }
        }

        public static Expression CreateIdentifierExpression(LocationReference locationReference)
        {
            return Expression.Call(RuntimeContextParameter, activityContextGetValueGenericMethod.MakeGenericMethod(locationReference.Type), Expression.Constant(locationReference, typeof(LocationReference)));
        }

        // If we ever expand the depth to which we'll look through an expression for a location,
        // then we also need to update the depth to which isLocationExpression is propagated in
        // ExpressionUtilities.TryRewriteLambdaExpression and VisualBasicHelper.Rewrite.
        public static bool IsLocation(LambdaExpression expression, Type targetType, out string extraErrorMessage)
        {
            extraErrorMessage = null;
            Expression body = expression.Body;

            if (targetType != null && body.Type != targetType)
            {
                // eg) LambdaReference<IComparable>((env) => strVar.Get(env))
                // you can have an expressionTree whose LambdaExpression.ReturnType == IComparable,
                // while its LambdaExpression.Body.Type == String
                // and not ever have Convert node in the tree.
                extraErrorMessage = SR.MustMatchReferenceExpressionReturnType;
                return false;
            }

            switch (body.NodeType)
            {
                case ExpressionType.ArrayIndex:
                    return true;

                case ExpressionType.MemberAccess:
                    // This also handles variables, which are emitted as "context.GetLocation<T>("v").Value"
                    MemberExpression memberExpression = (MemberExpression)body;
                    MemberTypes memberType = memberExpression.Member.MemberType;
                    if (memberType == MemberTypes.Field)
                    {
                        FieldInfo fieldInfo = (FieldInfo)memberExpression.Member;
                        if (fieldInfo.IsInitOnly)
                        {
                            // readOnly field
                            return false;
                        }
                        return true;
                    }
                    else if (memberType == MemberTypes.Property)
                    {
                        PropertyInfo propertyInfo = (PropertyInfo)memberExpression.Member;
                        if (!propertyInfo.CanWrite)
                        {
                            // no Setter
                            return false;
                        }
                        return true;
                    }
                    break;

                case ExpressionType.Call:
                    // Depends on the method being called.
                    //     System.Array.Get --> multi-dimensional array
                    //     get_Item --> might be an indexer property if it's special name & default etc.

                    MethodCallExpression callExpression = (MethodCallExpression)body;
                    MethodInfo method = callExpression.Method;

                    Type declaringType = method.DeclaringType;
                    if (declaringType.BaseType == TypeHelper.ArrayType && method.Name == "Get")
                    {
                        return true;
                    }
                    else if (method.IsSpecialName && method.Name.StartsWith("get_", StringComparison.Ordinal))
                    {
                        return true;
                    }
                    else if (method.Name == "GetValue" && declaringType == activityContextType)
                    {
                        return true;
                    }
                    else if (method.Name == "Get" && declaringType.IsGenericType)
                    {
                        Type declaringTypeGenericDefinition = declaringType.GetGenericTypeDefinition();

                        if (declaringTypeGenericDefinition == inOutArgumentGenericType ||
                            declaringTypeGenericDefinition == outArgumentGenericType)
                        {
                            return true;
                        }
                    }
                    break;

                case ExpressionType.Convert:
                    // a would-be-valid Location expression that is type converted is treated invalid
                    extraErrorMessage = SR.MustMatchReferenceExpressionReturnType;
                    return false;
            }
            return false;
        }

        public static LocationFactory<T> CreateLocationFactory<T>(LambdaExpression expression)
        {
            Expression body = expression.Body;

            switch (body.NodeType)
            {
                case ExpressionType.ArrayIndex:
                    return new ArrayLocationFactory<T>(expression);

                case ExpressionType.MemberAccess:
                    // This also handles variables, which are emitted as "context.GetLocation<T>("v").Value"
                    MemberTypes memberType = ((MemberExpression)body).Member.MemberType;
                    if (memberType == MemberTypes.Field)
                    {
                        return new FieldLocationFactory<T>(expression);
                    }
                    else if (memberType == MemberTypes.Property)
                    {
                        return new PropertyLocationFactory<T>(expression);
                    }
                    else
                    {
                        throw FxTrace.Exception.AsError(new NotSupportedException("Lvalues of member type " + memberType));
                    }

                case ExpressionType.Call:
                    // Depends on the method being called.
                    //     System.Array.Get --> multi-dimensional array
                    //     get_Item --> might be an indexer property if it's special name & default etc.

                    MethodCallExpression callExpression = (MethodCallExpression)body;
                    MethodInfo method = callExpression.Method;

                    Type declaringType = method.DeclaringType;
                    if (declaringType.BaseType == TypeHelper.ArrayType && method.Name == "Get")
                    {
                        return new MultidimensionalArrayLocationFactory<T>(expression);
                    }
                    else if (method.IsSpecialName && method.Name.StartsWith("get_", StringComparison.Ordinal))
                    {
                        return new IndexerLocationFactory<T>(expression);
                    }
                    else if (method.Name == "GetValue" && declaringType == activityContextType)
                    {
                        return new LocationReferenceFactory<T>(callExpression.Arguments[0], expression.Parameters);
                    }
                    else if (method.Name == "Get" && declaringType.IsGenericType)
                    {
                        Type declaringTypeGenericDefinition = declaringType.GetGenericTypeDefinition();

                        if (declaringTypeGenericDefinition == inOutArgumentGenericType ||
                            declaringTypeGenericDefinition == outArgumentGenericType)
                        {
                            return new ArgumentFactory<T>(callExpression.Object, expression.Parameters);
                        }
                    }

                    throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidExpressionForLocation(body.NodeType)));

                default:
                    throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidExpressionForLocation(body.NodeType)));
            }
        }

        internal static bool TryGetInlinedReference(CodeActivityPublicEnvironmentAccessor publicAccessor, LocationReference originalReference,
            bool isLocationExpression, out LocationReference inlinedReference)
        {
            if (isLocationExpression)
            {
                return publicAccessor.TryGetReferenceToPublicLocation(originalReference, true, out inlinedReference);
            }
            else
            {
                return publicAccessor.TryGetAccessToPublicLocation(originalReference, ArgumentDirection.In, true, out inlinedReference);
            }
        }

        static LocationFactory CreateParentReference(Expression expression, ReadOnlyCollection<ParameterExpression> lambdaParameters)
        {
            // create a LambdaExpression to get access to the expression
            int parameterCount = lambdaParameters.Count;
            Type genericFuncType = linqAssembly.GetType("System.Func`" + (parameterCount + 1), true);
            Type[] delegateParameterTypes = new Type[parameterCount + 1];

            for (int i = 0; i < parameterCount; ++i)
            {
                delegateParameterTypes[i] = lambdaParameters[i].Type;
            }
            delegateParameterTypes[parameterCount] = expression.Type;
            Type funcType = genericFuncType.MakeGenericType(delegateParameterTypes);
            LambdaExpression parentLambda = Expression.Lambda(funcType, expression, lambdaParameters);

            // call CreateLocationFactory<parentLambda.Type>(parentLambda);
            MethodInfo typedMethod = createLocationFactoryGenericMethod.MakeGenericMethod(expression.Type);
            return (LocationFactory)typedMethod.Invoke(null, new object[] { parentLambda });
        }

        static Func<ActivityContext, T> Compile<T>(Expression objectExpression, ReadOnlyCollection<ParameterExpression> parametersCollection)
        {
            ParameterExpression[] parameters = null;
            if (parametersCollection != null)
            {
                parameters = parametersCollection.ToArray<ParameterExpression>();
            }

            Expression<Func<ActivityContext, T>> objectLambda = Expression.Lambda<Func<ActivityContext, T>>(objectExpression, parameters);
            return objectLambda.Compile();
        }

        static T Evaluate<T>(Expression objectExpression, ReadOnlyCollection<ParameterExpression> parametersCollection, ActivityContext context)
        {
            Func<ActivityContext, T> objectFunc = Compile<T>(objectExpression, parametersCollection);
            return objectFunc(context);
        }

        // for single-dimensional arrays 
        class ArrayLocationFactory<T> : LocationFactory<T>
        {
            Func<ActivityContext, T[]> arrayFunction;
            Func<ActivityContext, int> indexFunction;

            public ArrayLocationFactory(LambdaExpression expression)
            {
                Fx.Assert(expression.Body.NodeType == ExpressionType.ArrayIndex, "ArrayIndex expression required");
                BinaryExpression arrayIndexExpression = (BinaryExpression)expression.Body;

                this.arrayFunction = ExpressionUtilities.Compile<T[]>(arrayIndexExpression.Left, expression.Parameters);
                this.indexFunction = ExpressionUtilities.Compile<int>(arrayIndexExpression.Right, expression.Parameters);
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                return new ArrayLocation(this.arrayFunction(context), this.indexFunction(context));
            }

            [DataContract]
            internal class ArrayLocation : Location<T>
            {
                T[] array;

                int index;

                public ArrayLocation(T[] array, int index)
                    : base()
                {
                    this.array = array;
                    this.index = index;
                }

                public override T Value
                {
                    get
                    {
                        return this.array[this.index];
                    }
                    set
                    {
                        this.array[this.index] = value;
                    }
                }

                [DataMember(Name = "array")]
                internal T[] SerializedArray
                {
                    get { return this.array; }
                    set { this.array = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "index")]
                internal int SerializedIndex
                {
                    get { return this.index; }
                    set { this.index = value; }
                }
            }
        }

        class FieldLocationFactory<T> : LocationFactory<T>
        {
            FieldInfo fieldInfo;
            Func<ActivityContext, object> ownerFunction;
            LocationFactory parentFactory;

            public FieldLocationFactory(LambdaExpression expression)
            {
                Fx.Assert(expression.Body.NodeType == ExpressionType.MemberAccess, "field expression required");
                MemberExpression memberExpression = (MemberExpression)expression.Body;

                Fx.Assert(memberExpression.Member.MemberType == MemberTypes.Field, "member field expected");
                this.fieldInfo = (FieldInfo)memberExpression.Member;

                if (this.fieldInfo.IsStatic)
                {
                    this.ownerFunction = null;
                }
                else
                {
                    this.ownerFunction = ExpressionUtilities.Compile<object>(
                    Expression.Convert(memberExpression.Expression, TypeHelper.ObjectType), expression.Parameters);
                }

                if (this.fieldInfo.DeclaringType.IsValueType)
                {
                    // may want to set a struct, so we need to make an expression in order to set the parent
                    parentFactory = CreateParentReference(memberExpression.Expression, expression.Parameters);
                }
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                object owner = null;
                if (this.ownerFunction != null)
                {
                    owner = this.ownerFunction(context);
                }

                Location parent = null;
                if (parentFactory != null)
                {
                    parent = parentFactory.CreateLocation(context);
                }
                return new FieldLocation(this.fieldInfo, owner, parent);
            }

            [DataContract]
            internal class FieldLocation : Location<T>
            {
                FieldInfo fieldInfo;

                object owner;

                Location parent;

                public FieldLocation(FieldInfo fieldInfo, object owner, Location parent)
                    : base()
                {
                    this.fieldInfo = fieldInfo;
                    this.owner = owner;
                    this.parent = parent;
                }

                [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.DoNotRaiseReservedExceptionTypes,
                    Justification = "Need to raise NullReferenceException to match expected failure case in workflows.")]
                public override T Value
                {
                    get
                    {
                        if (this.owner == null && !this.fieldInfo.IsStatic)
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.fieldInfo.Name)));
                        }

                        return (T)this.fieldInfo.GetValue(this.owner);
                    }
                    set
                    {
                        if (this.owner == null && !this.fieldInfo.IsStatic)
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.fieldInfo.Name)));
                        }

                        this.fieldInfo.SetValue(this.owner, value);
                        if (this.parent != null)
                        {
                            // Looks like we are trying to set a field on a struct
                            // Calling SetValue simply sets the field on the local copy of the struct, which is not very helpful
                            // Since we have a copy, assign it back to the parent
                            this.parent.Value = this.owner;
                        }
                    }
                }

                [DataMember(Name = "fieldInfo")]
                internal FieldInfo SerializedFieldInfo
                {
                    get { return this.fieldInfo; }
                    set { this.fieldInfo = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "owner")]
                internal object SerializedOwner
                {
                    get { return this.owner; }
                    set { this.owner = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "parent")]
                internal Location SerializedParent
                {
                    get { return this.parent; }
                    set { this.parent = value; }
                }
            }
        }

        class ArgumentFactory<T> : LocationFactory<T>
        {
            Func<ActivityContext, Argument> argumentFunction;

            public ArgumentFactory(Expression argumentExpression, ReadOnlyCollection<ParameterExpression> expressionParameters)
            {
                this.argumentFunction = ExpressionUtilities.Compile<Argument>(argumentExpression, expressionParameters);
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                Argument argument = this.argumentFunction(context);

                return argument.RuntimeArgument.GetLocation(context) as Location<T>;
            }
        }

        class LocationReferenceFactory<T> : LocationFactory<T>
        {
            Func<ActivityContext, LocationReference> locationReferenceFunction;

            public LocationReferenceFactory(Expression locationReferenceExpression, ReadOnlyCollection<ParameterExpression> expressionParameters)
            {
                this.locationReferenceFunction = ExpressionUtilities.Compile<LocationReference>(locationReferenceExpression, expressionParameters);
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                LocationReference locationReference = this.locationReferenceFunction(context);
                return locationReference.GetLocation(context) as Location<T>;
            }
        }

        class IndexerLocationFactory<T> : LocationFactory<T>
        {
            MethodInfo getItemMethod;
            string indexerName;
            MethodInfo setItemMethod;
            Func<ActivityContext, object>[] setItemArgumentFunctions;
            Func<ActivityContext, object> targetObjectFunction;

            public IndexerLocationFactory(LambdaExpression expression)
            {
                Fx.Assert(expression.Body.NodeType == ExpressionType.Call, "Call expression required.");

                MethodCallExpression callExpression = (MethodCallExpression)expression.Body;
                this.getItemMethod = callExpression.Method;

                Fx.Assert(this.getItemMethod.IsSpecialName && this.getItemMethod.Name.StartsWith("get_", StringComparison.Ordinal), "Special get_Item method required.");

                //  Get the set_Item accessor for the same set of parameter/return types if any.
                this.indexerName = this.getItemMethod.Name.Substring(4);
                string setItemName = "set_" + this.indexerName;
                ParameterInfo[] getItemParameters = this.getItemMethod.GetParameters();
                Type[] setItemParameterTypes = new Type[getItemParameters.Length + 1];

                for (int i = 0; i < getItemParameters.Length; i++)
                {
                    setItemParameterTypes[i] = getItemParameters[i].ParameterType;
                }
                setItemParameterTypes[getItemParameters.Length] = this.getItemMethod.ReturnType;

                this.setItemMethod = this.getItemMethod.DeclaringType.GetMethod(
                    setItemName, BindingFlags.Public | BindingFlags.Instance, null, setItemParameterTypes, null);

                if (this.setItemMethod != null)
                {
                    //  Get the target object and all the setter's arguments 
                    //  (minus the actual value to be set).
                    this.targetObjectFunction = ExpressionUtilities.Compile<object>(callExpression.Object, expression.Parameters);

                    this.setItemArgumentFunctions = new Func<ActivityContext, object>[callExpression.Arguments.Count];
                    for (int i = 0; i < callExpression.Arguments.Count; i++)
                    {
                        // convert value types to objects since Linq doesn't do it automatically
                        Expression argument = callExpression.Arguments[i];
                        if (argument.Type.IsValueType)
                        {
                            argument = Expression.Convert(argument, TypeHelper.ObjectType);
                        }
                        this.setItemArgumentFunctions[i] = ExpressionUtilities.Compile<object>(argument, expression.Parameters);
                    }
                }
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                object targetObject = null;
                object[] setItemArguments = null;

                if (this.setItemMethod != null)
                {
                    targetObject = this.targetObjectFunction(context);

                    setItemArguments = new object[this.setItemArgumentFunctions.Length];

                    for (int i = 0; i < this.setItemArgumentFunctions.Length; i++)
                    {
                        setItemArguments[i] = this.setItemArgumentFunctions[i](context);
                    }
                }

                return new IndexerLocation(this.indexerName, this.getItemMethod, this.setItemMethod, targetObject, setItemArguments);
            }

            [DataContract]
            internal class IndexerLocation : Location<T>
            {
                string indexerName;

                MethodInfo getItemMethod;

                MethodInfo setItemMethod;

                object targetObject;

                object[] setItemArguments;

                public IndexerLocation(string indexerName, MethodInfo getItemMethod, MethodInfo setItemMethod,
                    object targetObject, object[] getItemArguments)
                    : base()
                {
                    this.indexerName = indexerName;
                    this.getItemMethod = getItemMethod;
                    this.setItemMethod = setItemMethod;
                    this.targetObject = targetObject;
                    this.setItemArguments = getItemArguments;
                }

                [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.DoNotRaiseReservedExceptionTypes,
                Justification = "Need to raise NullReferenceException to match expected failure case in workflows.")]
                public override T Value
                {
                    get
                    {
                        if (this.targetObject == null && !this.getItemMethod.IsStatic)
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.getItemMethod.Name)));
                        }

                        return (T)this.getItemMethod.Invoke(this.targetObject, this.setItemArguments);
                    }

                    set
                    {

                        if (this.setItemMethod == null)
                        {
                            string targetObjectTypeName = this.targetObject.GetType().Name;
                            throw FxTrace.Exception.AsError(new InvalidOperationException(
                                SR.MissingSetAccessorForIndexer(this.indexerName, targetObjectTypeName)));
                        }

                        if (this.targetObject == null && !this.setItemMethod.IsStatic)
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.setItemMethod.Name)));
                        }

                        object[] localSetItemArguments = new object[this.setItemArguments.Length + 1];
                        Array.ConstrainedCopy(this.setItemArguments, 0, localSetItemArguments, 0, this.setItemArguments.Length);
                        localSetItemArguments[localSetItemArguments.Length - 1] = value;

                        this.setItemMethod.Invoke(this.targetObject, localSetItemArguments);
                    }
                }

                [DataMember(Name = "indexerName")]
                internal string SerializedIndexerName
                {
                    get { return this.indexerName; }
                    set { this.indexerName = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "getItemMethod")]
                internal MethodInfo SerializedGetItemMethod
                {
                    get { return this.getItemMethod; }
                    set { this.getItemMethod = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "setItemMethod")]
                internal MethodInfo SerializedSetItemMethod
                {
                    get { return this.setItemMethod; }
                    set { this.setItemMethod = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "targetObject")]
                internal object SerializedTargetObject
                {
                    get { return this.targetObject; }
                    set { this.targetObject = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "setItemArguments")]
                internal object[] SerializedSetItemArguments
                {
                    get { return this.setItemArguments; }
                    set { this.setItemArguments = value; }
                }
            }
        }

        class MultidimensionalArrayLocationFactory<T> : LocationFactory<T>
        {
            Func<ActivityContext, Array> arrayFunction;
            Func<ActivityContext, int>[] indexFunctions;

            public MultidimensionalArrayLocationFactory(LambdaExpression expression)
            {
                Fx.Assert(expression.Body.NodeType == ExpressionType.Call, "Call expression required.");
                MethodCallExpression callExpression = (MethodCallExpression)expression.Body;

                this.arrayFunction = ExpressionUtilities.Compile<Array>(
                    callExpression.Object, expression.Parameters);

                this.indexFunctions = new Func<ActivityContext, int>[callExpression.Arguments.Count];
                for (int i = 0; i < this.indexFunctions.Length; i++)
                {
                    this.indexFunctions[i] = ExpressionUtilities.Compile<int>(
                        callExpression.Arguments[i], expression.Parameters);
                }
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                int[] indices = new int[this.indexFunctions.Length];
                for (int i = 0; i < indices.Length; i++)
                {
                    indices[i] = this.indexFunctions[i](context);
                }
                return new MultidimensionalArrayLocation(this.arrayFunction(context), indices);
            }

            [DataContract]
            internal class MultidimensionalArrayLocation : Location<T>
            {
                Array array;

                int[] indices;

                public MultidimensionalArrayLocation(Array array, int[] indices)
                    : base()
                {
                    this.array = array;
                    this.indices = indices;
                }

                public override T Value
                {
                    get
                    {
                        return (T)this.array.GetValue(this.indices);
                    }

                    set
                    {
                        this.array.SetValue(value, this.indices);
                    }
                }

                [DataMember(Name = "array")]
                internal Array SerializedArray
                {
                    get { return this.array; }
                    set { this.array = value; }
                }

                [DataMember(Name = "indices")]
                internal int[] SerializedIndicess
                {
                    get { return this.indices; }
                    set { this.indices = value; }
                }
            }
        }

        class PropertyLocationFactory<T> : LocationFactory<T>
        {
            Func<ActivityContext, object> ownerFunction;
            PropertyInfo propertyInfo;
            LocationFactory parentFactory;

            public PropertyLocationFactory(LambdaExpression expression)
            {
                Fx.Assert(expression.Body.NodeType == ExpressionType.MemberAccess, "member access expression required");
                MemberExpression memberExpression = (MemberExpression)expression.Body;

                Fx.Assert(memberExpression.Member.MemberType == MemberTypes.Property, "property access expression expected");
                this.propertyInfo = (PropertyInfo)memberExpression.Member;

                if (memberExpression.Expression == null)
                {
                    // static property
                    this.ownerFunction = null;
                }
                else
                {
                    this.ownerFunction = ExpressionUtilities.Compile<object>(
                        Expression.Convert(memberExpression.Expression, TypeHelper.ObjectType), expression.Parameters);
                }

                if (this.propertyInfo.DeclaringType.IsValueType)
                {
                    // may want to set a struct, so we need to make an expression in order to set the parent
                    parentFactory = CreateParentReference(memberExpression.Expression, expression.Parameters);
                }
            }

            public override Location<T> CreateLocation(ActivityContext context)
            {
                object owner = null;
                if (this.ownerFunction != null)
                {
                    owner = this.ownerFunction(context);
                }

                Location parent = null;
                if (parentFactory != null)
                {
                    parent = parentFactory.CreateLocation(context);
                }
                return new PropertyLocation(this.propertyInfo, owner, parent);
            }

            [DataContract]
            internal class PropertyLocation : Location<T>
            {
                object owner;

                PropertyInfo propertyInfo;

                Location parent;

                public PropertyLocation(PropertyInfo propertyInfo, object owner, Location parent)
                    : base()
                {
                    this.propertyInfo = propertyInfo;
                    this.owner = owner;
                    this.parent = parent;
                }

                [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.DoNotRaiseReservedExceptionTypes,
                Justification = "Need to raise NullReferenceException to match expected failure case in workflows.")]
                public override T Value
                {
                    get
                    {
                        // Only allow access to public properties, EXCEPT that Locations are top-level variables 
                        // from the other's perspective, not internal properties, so they're okay as a special case.
                        // E.g. "[N]" from the user's perspective is not accessing a nonpublic property, even though
                        // at an implementation level it is.
                        MethodInfo getMethodInfo = this.propertyInfo.GetGetMethod();
                        if (getMethodInfo == null && !TypeHelper.AreTypesCompatible(this.propertyInfo.DeclaringType, typeof(Location)))
                        {
                            throw FxTrace.Exception.AsError(new InvalidOperationException(SR.WriteonlyPropertyCannotBeRead(this.propertyInfo.DeclaringType, this.propertyInfo.Name)));
                        }

                        if (this.owner == null && (getMethodInfo == null || !getMethodInfo.IsStatic))
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.propertyInfo.Name)));
                        }

                        // Okay, it's public
                        return (T)this.propertyInfo.GetValue(this.owner, null);
                    }

                    set
                    {
                        // Only allow access to public properties, EXCEPT that Locations are top-level variables 
                        // from the other's perspective, not internal properties, so they're okay as a special case.
                        // E.g. "[N]" from the user's perspective is not accessing a nonpublic property, even though
                        // at an implementation level it is.
                        MethodInfo setMethodInfo = this.propertyInfo.GetSetMethod();
                        if (setMethodInfo == null && !TypeHelper.AreTypesCompatible(this.propertyInfo.DeclaringType, typeof(Location)))
                        {
                            throw FxTrace.Exception.AsError(new InvalidOperationException(SR.ReadonlyPropertyCannotBeSet(this.propertyInfo.DeclaringType, this.propertyInfo.Name)));
                        }

                        if (this.owner == null && (setMethodInfo == null || !setMethodInfo.IsStatic))
                        {
                            throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.propertyInfo.Name)));
                        }

                        // Okay, it's public
                        this.propertyInfo.SetValue(this.owner, value, null);
                        if (this.parent != null)
                        {
                            // Looks like we are trying to set a property on a struct
                            // Calling SetValue simply sets the property on the local copy of the struct, which is not very helpful
                            // Since we have a copy, assign it back to the parent
                            this.parent.Value = this.owner;
                        }
                    }
                }

                [DataMember(EmitDefaultValue = false, Name = "owner")]
                internal object SerializedOwner
                {
                    get { return this.owner; }
                    set { this.owner = value; }
                }

                [DataMember(Name = "propertyInfo")]
                internal PropertyInfo SerializedPropertyInfo
                {
                    get { return this.propertyInfo; }
                    set { this.propertyInfo = value; }
                }

                [DataMember(EmitDefaultValue = false, Name = "parent")]
                internal Location SerializedParent
                {
                    get { return this.parent; }
                    set { this.parent = value; }
                }
            }
        }

        // Returns true if it changed the expression (newExpression != expression).
        // If it returns false then newExpression is set equal to expression.
        // This method uses the publicAccessor parameter to generate violations (workflow
        // artifacts which are not visible) and to generate inline references
        // (references at a higher scope which can be resolved at runtime).
        public static bool TryRewriteLambdaExpression(Expression expression, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression = false)
        {
            newExpression = expression;

            if (expression == null)
            {
                return false;
            }

            // Share some local declarations across the switch
            Expression left = null;
            Expression right = null;
            Expression other = null;
            bool hasChanged = false;
            IList<Expression> expressionList = null;
            IList<ElementInit> initializerList = null;
            IList<MemberBinding> bindingList = null;
            MethodCallExpression methodCall = null;
            BinaryExpression binaryExpression = null;
            NewArrayExpression newArray = null;
            UnaryExpression unaryExpression = null;

            switch (expression.NodeType)
            {
                case ExpressionType.Add:
                case ExpressionType.AddChecked:
                case ExpressionType.And:
                case ExpressionType.AndAlso:
                case ExpressionType.Coalesce:
                case ExpressionType.Divide:
                case ExpressionType.Equal:
                case ExpressionType.ExclusiveOr:
                case ExpressionType.GreaterThan:
                case ExpressionType.GreaterThanOrEqual:
                case ExpressionType.LeftShift:
                case ExpressionType.LessThan:
                case ExpressionType.LessThanOrEqual:
                case ExpressionType.Modulo:
                case ExpressionType.Multiply:
                case ExpressionType.MultiplyChecked:
                case ExpressionType.NotEqual:
                case ExpressionType.Or:
                case ExpressionType.OrElse:
                case ExpressionType.Power:
                case ExpressionType.RightShift:
                case ExpressionType.Subtract:
                case ExpressionType.SubtractChecked:
                    binaryExpression = (BinaryExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(binaryExpression.Left, out left, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpression(binaryExpression.Right, out right, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpression(binaryExpression.Conversion, out other, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.MakeBinary(
                            binaryExpression.NodeType,
                            left,
                            right,
                            binaryExpression.IsLiftedToNull,
                            binaryExpression.Method,
                            (LambdaExpression)other);
                    }
                    break;

                case ExpressionType.Conditional:
                    ConditionalExpression conditional = (ConditionalExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(conditional.Test, out other, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpression(conditional.IfTrue, out left, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpression(conditional.IfFalse, out right, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.Condition(
                            other,
                            left,
                            right);
                    }
                    break;

                case ExpressionType.Constant:
                    break;

                case ExpressionType.Invoke:
                    InvocationExpression invocation = (InvocationExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(invocation.Expression, out other, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpressionCollection(invocation.Arguments, out expressionList, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.Invoke(
                            other,
                            expressionList);
                    }
                    break;

                case ExpressionType.Lambda:
                    LambdaExpression lambda = (LambdaExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(lambda.Body, out other, publicAccessor, isLocationExpression);

                    if (hasChanged)
                    {
                        newExpression = Expression.Lambda(
                            lambda.Type,
                            other,
                            lambda.Parameters);
                    }
                    break;

                case ExpressionType.ListInit:
                    ListInitExpression listInit = (ListInitExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(listInit.NewExpression, out other, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpressionInitializersCollection(listInit.Initializers, out initializerList, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.ListInit(
                            (NewExpression)other,
                            initializerList);
                    }
                    break;

                case ExpressionType.Parameter:
                    break;

                case ExpressionType.MemberAccess:
                    MemberExpression memberExpression = (MemberExpression)expression;

                    // When creating a location for a member on a struct, we also need a location
                    // for the struct (so we don't just set the member on a copy of the struct)
                    bool subTreeIsLocationExpression = isLocationExpression && memberExpression.Member.DeclaringType.IsValueType;

                    hasChanged |= TryRewriteLambdaExpression(memberExpression.Expression, out other, publicAccessor, subTreeIsLocationExpression);

                    if (hasChanged)
                    {
                        newExpression = Expression.MakeMemberAccess(
                            other,
                            memberExpression.Member);
                    }
                    break;

                case ExpressionType.MemberInit:
                    MemberInitExpression memberInit = (MemberInitExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(memberInit.NewExpression, out other, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpressionBindingsCollection(memberInit.Bindings, out bindingList, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.MemberInit(
                            (NewExpression)other,
                            bindingList);
                    }
                    break;

                case ExpressionType.ArrayIndex:
                    // ArrayIndex can be a MethodCallExpression or a BinaryExpression
                    methodCall = expression as MethodCallExpression;
                    if (methodCall != null)
                    {
                        hasChanged |= TryRewriteLambdaExpression(methodCall.Object, out other, publicAccessor);
                        hasChanged |= TryRewriteLambdaExpressionCollection(methodCall.Arguments, out expressionList, publicAccessor);

                        if (hasChanged)
                        {
                            newExpression = Expression.ArrayIndex(
                                other,
                                expressionList);
                        }
                    }
                    else
                    {
                        binaryExpression = (BinaryExpression)expression;

                        hasChanged |= TryRewriteLambdaExpression(binaryExpression.Left, out left, publicAccessor);
                        hasChanged |= TryRewriteLambdaExpression(binaryExpression.Right, out right, publicAccessor);

                        if (hasChanged)
                        {
                            newExpression = Expression.ArrayIndex(
                                left,
                                right);
                        }
                    }
                    break;

                case ExpressionType.Call:
                    methodCall = (MethodCallExpression)expression;

                    // TryRewriteMethodCall does all the real work
                    hasChanged = TryRewriteMethodCall(methodCall, out newExpression, publicAccessor, isLocationExpression);
                    break;

                case ExpressionType.NewArrayInit:
                    newArray = (NewArrayExpression)expression;

                    hasChanged |= TryRewriteLambdaExpressionCollection(newArray.Expressions, out expressionList, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.NewArrayInit(
                            newArray.Type.GetElementType(),
                            expressionList);
                    }
                    break;

                case ExpressionType.NewArrayBounds:
                    newArray = (NewArrayExpression)expression;

                    hasChanged |= TryRewriteLambdaExpressionCollection(newArray.Expressions, out expressionList, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.NewArrayBounds(
                            newArray.Type.GetElementType(),
                            expressionList);
                    }
                    break;

                case ExpressionType.New:
                    NewExpression objectCreationExpression = (NewExpression)expression;

                    if (objectCreationExpression.Constructor == null)
                    {
                        // must be creating a valuetype
                        Fx.Assert(objectCreationExpression.Arguments.Count == 0, "NewExpression with null Constructor but some arguments");
                    }
                    else
                    {
                        hasChanged |= TryRewriteLambdaExpressionCollection(objectCreationExpression.Arguments, out expressionList, publicAccessor);

                        if (hasChanged)
                        {
                            newExpression = objectCreationExpression.Update(expressionList);
                        }
                    }
                    break;

                case ExpressionType.TypeIs:
                    TypeBinaryExpression typeBinary = (TypeBinaryExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(typeBinary.Expression, out other, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.TypeIs(
                            other,
                            typeBinary.TypeOperand);
                    }
                    break;

                case ExpressionType.ArrayLength:
                case ExpressionType.Convert:
                case ExpressionType.ConvertChecked:
                case ExpressionType.Negate:
                case ExpressionType.NegateChecked:
                case ExpressionType.Not:
                case ExpressionType.Quote:
                case ExpressionType.TypeAs:
                    unaryExpression = (UnaryExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(unaryExpression.Operand, out left, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.MakeUnary(
                            unaryExpression.NodeType,
                            left,
                            unaryExpression.Type,
                            unaryExpression.Method);
                    }
                    break;

                case ExpressionType.UnaryPlus:
                    unaryExpression = (UnaryExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(unaryExpression.Operand, out left, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.UnaryPlus(
                            left,
                            unaryExpression.Method);
                    }
                    break;

                // Expression Tree V2.0 types. This is due to the hosted VB compiler generating ET V2.0 nodes.

                case ExpressionType.Block:
                    BlockExpression block = (BlockExpression)expression;

                    hasChanged |= TryRewriteLambdaExpressionCollection(block.Expressions, out expressionList, publicAccessor);

                    if (hasChanged)
                    {
                        // Parameter collections are never rewritten
                        newExpression = Expression.Block(block.Variables, expressionList);
                    }
                    break;

                case ExpressionType.Assign:
                    binaryExpression = (BinaryExpression)expression;

                    hasChanged |= TryRewriteLambdaExpression(binaryExpression.Left, out left, publicAccessor);
                    hasChanged |= TryRewriteLambdaExpression(binaryExpression.Right, out right, publicAccessor);

                    if (hasChanged)
                    {
                        newExpression = Expression.Assign(left, right);
                    }
                    break;
            }

            return hasChanged;
        }

        static bool TryRewriteLambdaExpressionBindingsCollection(IList<MemberBinding> bindings, out IList<MemberBinding> newBindings, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            IList<MemberBinding> temporaryBindings = null;

            for (int i = 0; i < bindings.Count; i++)
            {
                MemberBinding binding = bindings[i];

                MemberBinding newBinding;
                if (TryRewriteMemberBinding(binding, out newBinding, publicAccessor))
                {
                    if (temporaryBindings == null)
                    {
                        // We initialize this list with the unchanged bindings
                        temporaryBindings = new List<MemberBinding>(bindings.Count);

                        for (int j = 0; j < i; j++)
                        {
                            temporaryBindings.Add(bindings[j]);
                        }
                    }
                }

                // At this point newBinding is either the updated binding (if
                // rewrite returned true) or the original binding (if false
                // was returned)
                if (temporaryBindings != null)
                {
                    temporaryBindings.Add(newBinding);
                }
            }

            if (temporaryBindings != null)
            {
                newBindings = temporaryBindings;
                return true;
            }
            else
            {
                newBindings = bindings;
                return false;
            }
        }

        static bool TryRewriteMemberBinding(MemberBinding binding, out MemberBinding newBinding, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            newBinding = binding;

            bool hasChanged = false;
            Expression other = null;
            IList<ElementInit> initializerList = null;
            IList<MemberBinding> bindingList = null;

            switch (binding.BindingType)
            {
                case MemberBindingType.Assignment:
                    MemberAssignment assignment = (MemberAssignment)binding;

                    hasChanged |= TryRewriteLambdaExpression(assignment.Expression, out other, publicAccessor);

                    if (hasChanged)
                    {
                        newBinding = Expression.Bind(assignment.Member, other);
                    }
                    break;

                case MemberBindingType.ListBinding:
                    MemberListBinding list = (MemberListBinding)binding;

                    hasChanged |= TryRewriteLambdaExpressionInitializersCollection(list.Initializers, out initializerList, publicAccessor);

                    if (hasChanged)
                    {
                        newBinding = Expression.ListBind(list.Member, initializerList);
                    }
                    break;

                case MemberBindingType.MemberBinding:
                    MemberMemberBinding member = (MemberMemberBinding)binding;

                    hasChanged |= TryRewriteLambdaExpressionBindingsCollection(member.Bindings, out bindingList, publicAccessor);

                    if (hasChanged)
                    {
                        newBinding = Expression.MemberBind(member.Member, bindingList);
                    }
                    break;
            }

            return hasChanged;
        }


        static bool TryRewriteLambdaExpressionCollection(IList<Expression> expressions, out IList<Expression> newExpressions, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            IList<Expression> temporaryExpressions = null;

            for (int i = 0; i < expressions.Count; i++)
            {
                Expression expression = expressions[i];

                Expression newExpression;
                if (TryRewriteLambdaExpression(expression, out newExpression, publicAccessor))
                {
                    if (temporaryExpressions == null)
                    {
                        // We initialize the list by copying all of the unchanged
                        // expressions over
                        temporaryExpressions = new List<Expression>(expressions.Count);

                        for (int j = 0; j < i; j++)
                        {
                            temporaryExpressions.Add(expressions[j]);
                        }
                    }
                }

                // newExpression will either be set to the new expression (true was
                // returned) or the original expression (false was returned)
                if (temporaryExpressions != null)
                {
                    temporaryExpressions.Add(newExpression);
                }
            }

            if (temporaryExpressions != null)
            {
                newExpressions = temporaryExpressions;
                return true;
            }
            else
            {
                newExpressions = expressions;
                return false;
            }
        }

        static bool TryRewriteLambdaExpressionInitializersCollection(IList<ElementInit> initializers, out IList<ElementInit> newInitializers, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            IList<ElementInit> temporaryInitializers = null;

            for (int i = 0; i < initializers.Count; i++)
            {
                ElementInit elementInit = initializers[i];

                IList<Expression> newExpressions;
                if (TryRewriteLambdaExpressionCollection(elementInit.Arguments, out newExpressions, publicAccessor))
                {
                    if (temporaryInitializers == null)
                    {
                        // We initialize the list by copying all of the unchanged
                        // initializers over
                        temporaryInitializers = new List<ElementInit>(initializers.Count);

                        for (int j = 0; j < i; j++)
                        {
                            temporaryInitializers.Add(initializers[j]);
                        }
                    }

                    elementInit = Expression.ElementInit(elementInit.AddMethod, newExpressions);
                }

                if (temporaryInitializers != null)
                {
                    temporaryInitializers.Add(elementInit);
                }
            }

            if (temporaryInitializers != null)
            {
                newInitializers = temporaryInitializers;
                return true;
            }
            else
            {
                newInitializers = initializers;
                return false;
            }
        }

        static bool TryGetInlinedArgumentReference(MethodCallExpression originalExpression, Expression argumentExpression, out LocationReference inlinedReference, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            inlinedReference = null;

            Argument argument = null;
            object tempArgument;

            if (CustomMemberResolver(argumentExpression, out tempArgument) && tempArgument is Argument)
            {
                argument = (Argument)tempArgument;
            }
            else
            {
                try
                {
                    Expression<Func<Argument>> argumentLambda = Expression.Lambda<Func<Argument>>(argumentExpression);
                    Func<Argument> argumentFunc = argumentLambda.Compile();
                    argument = argumentFunc();
                }
                catch (Exception e)
                {
                    if (Fx.IsFatal(e))
                    {
                        throw;
                    }

                    publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(argumentExpression.Type, originalExpression, e));
                    return false;
                }
            }

            if (argument == null)
            {
                if (argumentExpression.NodeType == ExpressionType.MemberAccess)
                {
                    MemberExpression memberExpression = (MemberExpression)argumentExpression;
                    if (memberExpression.Member.MemberType == MemberTypes.Property)
                    {
                        RuntimeArgument runtimeArgument = ActivityUtilities.FindArgument(memberExpression.Member.Name, publicAccessor.ActivityMetadata.CurrentActivity);

                        if (runtimeArgument != null && TryGetInlinedReference(publicAccessor, runtimeArgument, isLocationExpression, out inlinedReference))
                        {
                            return true;
                        }
                    }
                }

                publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(argumentExpression.Type, originalExpression, SR.SubexpressionResultWasNull(argumentExpression.Type)));
                return false;
            }
            else
            {
                if (argument.RuntimeArgument == null || !TryGetInlinedReference(publicAccessor, argument.RuntimeArgument, isLocationExpression, out inlinedReference))
                {
                    publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(argumentExpression.Type, originalExpression, SR.SubexpressionResultWasNotVisible(argumentExpression.Type)));
                    return false;
                }
                else
                {
                    return true;
                }
            }
        }

        static bool TryRewriteArgumentGetCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            // We verify that this is a method we are expecting (single parameter
            // of type ActivityContext).  If not, we won't rewrite it at all
            // and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression contextExpression = argumentExpressions[0];

                if (contextExpression.Type == activityContextType)
                {
                    LocationReference inlinedReference;
                    if (TryGetInlinedArgumentReference(originalExpression, originalExpression.Object, out inlinedReference, publicAccessor, isLocationExpression))
                    {
                        newExpression = Expression.Call(contextExpression, activityContextGetValueGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                        return true;
                    }
                }
            }

            newExpression = originalExpression;
            return false;
        }

        static bool TryRewriteArgumentGetLocationCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            // We verify that this is a method we are expecting (single parameter
            // of type ActivityContext).  If not, we won't rewrite it at all
            // and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression contextExpression = argumentExpressions[0];

                if (contextExpression.Type == activityContextType)
                {
                    LocationReference inlinedReference;
                    if (TryGetInlinedArgumentReference(originalExpression, originalExpression.Object, out inlinedReference, publicAccessor, true))
                    {
                        if (returnType == null)
                        {
                            newExpression = Expression.Call(Expression.Constant(inlinedReference, typeof(LocationReference)), locationReferenceGetLocationMethod, contextExpression);
                        }
                        else
                        {
                            newExpression = Expression.Call(contextExpression, activityContextGetLocationGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                        }

                        return true;
                    }
                }
            }

            newExpression = originalExpression;
            return false;
        }

        static bool TryRewriteLocationReferenceSubclassGetCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            // We verify that this is a method we are expecting (single parameter
            // of type ActivityContext).  If not, we won't rewrite it at all
            // and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression contextExpression = argumentExpressions[0];

                if (contextExpression.Type == activityContextType)
                {
                    LocationReference inlinedReference;
                    if (TryGetInlinedLocationReference(originalExpression, originalExpression.Object, out inlinedReference, publicAccessor, isLocationExpression))
                    {
                        newExpression = Expression.Call(contextExpression, activityContextGetValueGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                        return true;
                    }
                }
            }

            newExpression = originalExpression;
            return false;
        }

        static bool TryRewriteLocationReferenceSubclassGetLocationCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            // We verify that this is a method we are expecting (single parameter
            // of type ActivityContext).  If not, we won't rewrite it at all
            // and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression contextExpression = argumentExpressions[0];

                if (contextExpression.Type == activityContextType)
                {
                    LocationReference inlinedReference;
                    if (TryGetInlinedLocationReference(originalExpression, originalExpression.Object, out inlinedReference, publicAccessor, true))
                    {
                        if (returnType == null)
                        {
                            newExpression = Expression.Call(Expression.Constant(inlinedReference, typeof(LocationReference)), locationReferenceGetLocationMethod, originalExpression.Arguments[0]);
                        }
                        else
                        {
                            newExpression = Expression.Call(contextExpression, activityContextGetLocationGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                        }

                        return true;
                    }
                }
            }

            newExpression = originalExpression;
            return false;
        }

        static bool CustomMemberResolver(Expression expression, out object memberValue)
        {
            memberValue = null;

            switch (expression.NodeType)
            {
                case ExpressionType.Constant:
                    ConstantExpression constantExpression = expression as ConstantExpression;
                    memberValue = constantExpression.Value;
                    // memberValue = null means:
                    // 1. The expression does not follow the common patterns(local, field or property)
                    // which we optimize(do not compile using Linq compiler) and try to resolve directly in this method 
                    // OR 2. The expression actually resolved to null.
                    // In both these cases, we compile the expression and run it so that we have a single error path.
                    return memberValue != null;

                case ExpressionType.MemberAccess:
                    MemberExpression memberExpression = expression as MemberExpression;
                    if (memberExpression.Expression != null)
                    {
                        CustomMemberResolver(memberExpression.Expression, out memberValue);
                        memberValue = GetMemberValue(memberExpression.Member, memberValue);
                    }
                    return memberValue != null;

                default:
                    return false;
            }
        }

        static object GetMemberValue(MemberInfo memberInfo, object owner)
        {
            if (owner == null)
            {
                // We do not want to throw any exceptions here. We 
                // will just do the regular compile in this case.
                return null;
            }

            MemberTypes memberType = memberInfo.MemberType;
            if (memberType == MemberTypes.Property)
            {
                PropertyInfo propertyInfo = memberInfo as PropertyInfo;
                return propertyInfo.GetValue(owner, null);

            }
            else if (memberType == MemberTypes.Field)
            {
                FieldInfo fieldInfo = memberInfo as FieldInfo;
                return fieldInfo.GetValue(owner);
            }
            return null;
        }

        static bool TryGetInlinedLocationReference(MethodCallExpression originalExpression, Expression locationReferenceExpression, out LocationReference inlinedReference, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            inlinedReference = null;

            LocationReference locationReference = null;
            object tempLocationReference;
            if (CustomMemberResolver(locationReferenceExpression, out tempLocationReference) && tempLocationReference is LocationReference)
            {
                locationReference = (LocationReference)tempLocationReference;
            }
            else
            {
                try
                {
                    Expression<Func<LocationReference>> locationReferenceLambda = Expression.Lambda<Func<LocationReference>>(locationReferenceExpression);
                    Func<LocationReference> locationReferenceFunc = locationReferenceLambda.Compile();
                    locationReference = locationReferenceFunc();
                }
                catch (Exception e)
                {
                    if (Fx.IsFatal(e))
                    {
                        throw;
                    }

                    publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(locationReferenceExpression.Type, originalExpression, e));
                    return false;
                }
            }

            if (locationReference == null)
            {
                publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(locationReferenceExpression.Type, originalExpression, SR.SubexpressionResultWasNull(locationReferenceExpression.Type)));
                return false;
            }
            else if (!TryGetInlinedReference(publicAccessor, locationReference, isLocationExpression, out inlinedReference))
            {
                publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(locationReferenceExpression.Type, originalExpression, SR.SubexpressionResultWasNotVisible(locationReferenceExpression.Type)));
                return false;
            }
            else
            {
                return true;
            }
        }

        static bool TryRewriteActivityContextGetValueCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            newExpression = originalExpression;

            LocationReference inlinedReference = null;

            // We verify that this is a method we are expecting (single parameter
            // of either LocationReference or Argument type).  If not, we won't
            // rewrite it at all and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression parameterExpression = argumentExpressions[0];

                if (TypeHelper.AreTypesCompatible(parameterExpression.Type, typeof(Argument)))
                {
                    if (!TryGetInlinedArgumentReference(originalExpression, parameterExpression, out inlinedReference, publicAccessor, isLocationExpression))
                    {
                        publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(parameterExpression.Type, originalExpression, SR.SubexpressionResultWasNotVisible(parameterExpression.Type)));
                        return false;
                    }
                }
                else if (TypeHelper.AreTypesCompatible(parameterExpression.Type, typeof(LocationReference)))
                {
                    if (!TryGetInlinedLocationReference(originalExpression, parameterExpression, out inlinedReference, publicAccessor, isLocationExpression))
                    {
                        publicAccessor.ActivityMetadata.AddValidationError(SR.ErrorExtractingValuesForLambdaRewrite(parameterExpression.Type, originalExpression, SR.SubexpressionResultWasNotVisible(parameterExpression.Type)));
                        return false;
                    }
                }
            }

            if (inlinedReference != null)
            {
                newExpression = Expression.Call(originalExpression.Object, activityContextGetValueGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                return true;
            }

            return false;
        }

        static bool TryRewriteActivityContextGetLocationCall(MethodCallExpression originalExpression, Type returnType, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor)
        {
            // We verify that this is a method we are expecting (single parameter
            // of LocationReference type).  If not, we won't rewrite it at all
            // and will just let it fail at runtime.
            ReadOnlyCollection<Expression> argumentExpressions = originalExpression.Arguments;

            if (argumentExpressions.Count == 1)
            {
                Expression locationReference = argumentExpressions[0];

                if (TypeHelper.AreTypesCompatible(locationReference.Type, locationReferenceType))
                {
                    LocationReference inlinedReference;
                    if (TryGetInlinedLocationReference(originalExpression, originalExpression.Arguments[0], out inlinedReference, publicAccessor, true))
                    {
                        newExpression = Expression.Call(originalExpression.Object, activityContextGetLocationGenericMethod.MakeGenericMethod(returnType), Expression.Constant(inlinedReference, typeof(LocationReference)));
                        return true;
                    }
                }
            }

            newExpression = originalExpression;
            return false;
        }

        // Local perf testing leads to the following preference for matching method infos:
        //   * object.ReferenceEquals(info1, info2) is the fastest
        //   * info1.Name == "MethodName" is a close second
        //   * object.ReferenceEquals(info1, type.GetMethod("MethodName")) is very slow by comparison
        //   * object.ReferenceEquals(info1, genericMethodDefinition.MakeGenericMethod(typeParameter)) is also very
        //     slow by comparison
        static bool TryRewriteMethodCall(MethodCallExpression methodCall, out Expression newExpression, CodeActivityPublicEnvironmentAccessor publicAccessor, bool isLocationExpression)
        {
            // NOTE: Here's the set of method call conversions/rewrites that we are
            // performing.  The left hand side of the "=>" is the pattern that from
            // the original expression using the following shorthand for instances of
            // types:
            //    ctx = ActivityContext
            //    inArg = InArgument<T>
            //    inOutArg = InOutArgument<T>
            //    outArg = OutArgument<T>
            //    arg = Argument
            //    runtimeArg = RuntimeArgument
            //    ref = LocationReference (and subclasses)
            // 
            // The right hand side of the "=>" shows the rewritten method call.  When
            // the same symbol shows up on both sides that means we will use the same
            // expression (IE - ref.Get(ctx) => ctx.GetValue<T>(inline) means that the
            // expression for ctx on the left side is the same expression we should use
            // on the right side).
            //
            // "inline" is used in the right hand side to signify the inlined location
            // reference.  Except where explicitly called out, this is the inlined
            // version of the LocationReference (or subclass) from the left hand side.
            //
            // If the left-hand-side method is Get/GetValue methods, and isLocationExpression
            // is false, we create a read-only InlinedLocationReference, which will produce
            // a RuntimeArgument<T> with ArgumentDirection.In.
            // Otherwise, we create a full-access InlinedLocationReference, which will produce
            // a RuntimeArgument<Location<T>> with ArgumentDirection.In.
            //
            // Finally, "(new)" signifies that the method we are looking for hides a
            // method with the same signature on one of the base classes.
            //
            // ActivityContext
            //    ctx.GetValue<T>(inArg) => ctx.GetValue<T>(inline)  inline = Inline(inArg.RuntimeArgument)
            //    ctx.GetValue<T>(inOutArg) => ctx.GetValue<T>(inline)  inline = Inline(inOutArg.RuntimeArgument)
            //    ctx.GetValue<T>(outArg) => ctx.GetValue<T>(inline)  inline = Inline(outArg.RuntimeArgument)
            //    ctx.GetValue(arg) => ctx.GetValue<object>(inline)  inline = Inline(arg.RuntimeArgument)
            //    ctx.GetValue(runtimeArg) => ctx.GetValue<object>(inline)
            //    ctx.GetValue<T>(ref) => ctx.GetValue<T>(inline)
            //    ctx.GetLocation<T>(ref) => ctx.GetLocation<T>(inline)
            //
            // LocationReference
            //    ref.GetLocation(ctx) => inline.GetLocation(ctx)
            //
            // RuntimeArgument : LocationReference
            //    ref.Get(ctx) => ctx.GetValue<object>(inline)
            //    ref.Get<T>(ctx) => ctx.GetValue<T>(inline)
            //
            // Argument
            //    arg.Get(ctx) => ctx.GetValue<object>(inline)  inline = Inline(arg.RuntimeArgument)
            //    arg.Get<T>(ctx) => ctx.GetValue<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //    arg.GetLocation(ctx) => inline.GetLocation(ctx)  inline = Inline(arg.RuntimeArgument)
            //
            // InArgument<T> : Argument
            //    (new)  arg.Get(ctx) => ctx.GetValue<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //
            // InOutArgument<T> : Argument
            //    (new)  arg.Get(ctx) => ctx.GetValue<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //    (new)  arg.GetLocation<T>(ctx) => ctx.GetLocation<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //
            // OutArgument<T> : Argument
            //    (new)  arg.Get(ctx) => ctx.GetValue<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //    (new)  arg.GetLocation<T>(ctx) => ctx.GetLocation<T>(inline)  inline = Inline(arg.RuntimeArgument)
            //
            // Variable : LocationReference
            //    ref.Get(ctx) => ctx.GetValue<object>(inline)
            //
            // Variable<T> : Variable
            //    (new)  ref.Get(ctx) => ctx.GetValue<T>(inline)
            //    (new)  ref.GetLocation(ctx) => ctx.GetLocation<T>(inline)
            //
            // DelegateArgument : LocationReference
            //    ref.Get(ctx) => ctx.GetValue<object>(inline)
            //
            // DelegateInArgument<T> : DelegateArgument
            //    (new) ref.Get(ctx) => ctx.GetValue<T>(inline)
            //
            // DelegateOutArgument<T> : DelegateArgument
            //    (new) ref.Get(ctx) => ctx.GetValue<T>(inline)
            //    (new) ref.GetLocation(ctx) => ctx.GetLocation<T>(inline)

            MethodInfo targetMethod = methodCall.Method;
            Type targetObjectType = targetMethod.DeclaringType;

            if (targetObjectType.IsGenericType)
            {
                // All of these methods are non-generic methods (they don't introduce a new
                // type parameter), but they do make use of the type parameter of the 
                // generic declaring type.  Because of that we can't do MethodInfo comparison
                // and fall back to string comparison.
                Type targetObjectGenericType = targetObjectType.GetGenericTypeDefinition();

                if (targetObjectGenericType == variableGenericType)
                {
                    if (targetMethod.Name == "Get")
                    {
                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor, isLocationExpression);
                    }
                    else if (targetMethod.Name == "GetLocation")
                    {
                        return TryRewriteLocationReferenceSubclassGetLocationCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor);
                    }
                }
                else if (targetObjectGenericType == inArgumentGenericType)
                {
                    if (targetMethod.Name == "Get")
                    {
                        return TryRewriteArgumentGetCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor, isLocationExpression);
                    }
                }
                else if (targetObjectGenericType == outArgumentGenericType || targetObjectGenericType == inOutArgumentGenericType)
                {
                    if (targetMethod.Name == "Get")
                    {
                        return TryRewriteArgumentGetCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor, isLocationExpression);
                    }
                    else if (targetMethod.Name == "GetLocation")
                    {
                        return TryRewriteArgumentGetLocationCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor);
                    }
                }
                else if (targetObjectGenericType == delegateInArgumentGenericType)
                {
                    if (targetMethod.Name == "Get")
                    {
                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor, isLocationExpression);
                    }
                }
                else if (targetObjectGenericType == delegateOutArgumentGenericType)
                {
                    if (targetMethod.Name == "Get")
                    {
                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor, isLocationExpression);
                    }
                    else if (targetMethod.Name == "GetLocation")
                    {
                        return TryRewriteLocationReferenceSubclassGetLocationCall(methodCall, targetObjectType.GetGenericArguments()[0], out newExpression, publicAccessor);
                    }
                }
            }
            else
            {
                if (targetObjectType == variableType)
                {
                    if (object.ReferenceEquals(targetMethod, variableGetMethod))
                    {
                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, TypeHelper.ObjectType, out newExpression, publicAccessor, isLocationExpression);
                    }
                }
                else if (targetObjectType == delegateArgumentType)
                {
                    if (object.ReferenceEquals(targetMethod, delegateArgumentGetMethod))
                    {
                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, TypeHelper.ObjectType, out newExpression, publicAccessor, isLocationExpression);
                    }
                }
                else if (targetObjectType == activityContextType)
                {
                    // We use the string comparison for these two because
                    // we have several overloads of GetValue (some generic,
                    // some not) and GetLocation is a generic method
                    if (targetMethod.Name == "GetValue")
                    {
                        Type returnType = TypeHelper.ObjectType;

                        if (targetMethod.IsGenericMethod)
                        {
                            returnType = targetMethod.GetGenericArguments()[0];
                        }

                        return TryRewriteActivityContextGetValueCall(methodCall, returnType, out newExpression, publicAccessor, isLocationExpression);
                    }
                    else if (targetMethod.IsGenericMethod && targetMethod.Name == "GetLocation")
                    {
                        return TryRewriteActivityContextGetLocationCall(methodCall, targetMethod.GetGenericArguments()[0], out newExpression, publicAccessor);
                    }
                }
                else if (targetObjectType == locationReferenceType)
                {
                    if (object.ReferenceEquals(targetMethod, locationReferenceGetLocationMethod))
                    {
                        return TryRewriteLocationReferenceSubclassGetLocationCall(methodCall, null, out newExpression, publicAccessor);
                    }
                }
                else if (targetObjectType == runtimeArgumentType)
                {
                    // We use string comparison here because we can
                    // match both overloads with a single check.
                    if (targetMethod.Name == "Get")
                    {
                        Type returnType = TypeHelper.ObjectType;

                        if (targetMethod.IsGenericMethod)
                        {
                            returnType = targetMethod.GetGenericArguments()[0];
                        }

                        return TryRewriteLocationReferenceSubclassGetCall(methodCall, returnType, out newExpression, publicAccessor, isLocationExpression);
                    }
                }
                else if (targetObjectType == argumentType)
                {
                    // We use string comparison here because we can
                    // match both overloads with a single check.
                    if (targetMethod.Name == "Get")
                    {
                        Type returnType = TypeHelper.ObjectType;

                        if (targetMethod.IsGenericMethod)
                        {
                            returnType = targetMethod.GetGenericArguments()[0];
                        }

                        return TryRewriteArgumentGetCall(methodCall, returnType, out newExpression, publicAccessor, isLocationExpression);
                    }
                    else if (object.ReferenceEquals(targetMethod, argumentGetLocationMethod))
                    {
                        return TryRewriteArgumentGetLocationCall(methodCall, null, out newExpression, publicAccessor);
                    }
                }
            }

            // Here's the code for a method call that isn't on our "special" list
            newExpression = methodCall;

            Expression objectExpression;
            IList<Expression> expressionList;

            bool hasChanged = TryRewriteLambdaExpression(methodCall.Object, out objectExpression, publicAccessor);
            hasChanged |= TryRewriteLambdaExpressionCollection(methodCall.Arguments, out expressionList, publicAccessor);

            if (hasChanged)
            {
                newExpression = Expression.Call(objectExpression, targetMethod, expressionList);
            }

            return hasChanged;
        }

        internal static Expression RewriteNonCompiledExpressionTree(LambdaExpression originalLambdaExpression)
        {
            ExpressionTreeRewriter expressionVisitor = new ExpressionTreeRewriter();
            return expressionVisitor.Visit(Expression.Lambda(
                typeof(Func<,>).MakeGenericType(typeof(ActivityContext), originalLambdaExpression.ReturnType),
                originalLambdaExpression.Body, 
                new ParameterExpression[] { ExpressionUtilities.RuntimeContextParameter }));
        }
    }
}