Ejemplo n.º 1
0
        public override void Execute(CallStackCtxMenuContext context)
        {
            var vm = SwitchToFrameCallStackCtxMenuCommand.GetFrame(context);

            if (vm != null)
            {
                FrameUtils.GoToIL(fileTabManager, moduleLoader.Value, vm.Frame, false);
            }
        }
Ejemplo n.º 2
0
        public override void Execute(CallStackCtxMenuContext context)
        {
            var vm = SwitchToFrameCallStackCtxMenuCommand.GetFrame(context);

            if (vm != null)
            {
                FrameUtils.GoToIL(moduleIdProvider, documentTabService, moduleLoader.Value, vm.Frame, false);
            }
        }
Ejemplo n.º 3
0
        protected override void Execute(CallStackCtxMenuContext context)
        {
            var vm = SwitchToFrameCallStackCtxMenuCommand.GetFrame(context);

            if (vm != null)
            {
                FrameUtils.GoToIL(vm.Frame, true);
            }
        }