public static void Continue(this V8DebuggerProtocolClient debugger, string stepAction = null, int stepCount = 0)
 {
     var arg = new ContinueRequestArguments ().CreateLocalCache<ContinueRequestArguments> ();
     arg.Stepaction = stepAction;
     arg.Stepcount = stepCount;
     debugger.Continue (arg);
 }
 public void Continue(ContinueRequestArguments args)
 {
     Process (new DebuggerRequest () { Arguments = args, Command = "continue" });
 }