Beispiel #1
0
        public int ConvertLargeAndSmallMethod()
        {
            // This test reuses the SsaConverter instance to exercise caching
            var converter = new SsaConverter();
            var large     = converter.ConvertToSsa(_largeMethod);
            var small     = converter.ConvertToSsa(_smallMethod);

            return(large.Values.Count + small.Values.Count);
        }