Ejemplo n.º 1
0
        internal ActionFlowGraphBuilder(ControlFlowGraph cfg)
        {
            _method = cfg.MethodBody.Method;

            _cfg = cfg;
            _expressionDecompiler = new ExpressionDecompiler(_method);

            _graph = new ActionFlowGraph(_cfg, _blocks);
        }
Ejemplo n.º 2
0
		internal ActionFlowGraphBuilder (ControlFlowGraph cfg)
		{
			_method = cfg.MethodBody.Method;

			_cfg = cfg;
			_expressionDecompiler = new ExpressionDecompiler (_method);

			_graph = new ActionFlowGraph (_cfg, _blocks);
		}