Exemple #1
0
 public void UpdateWatch(int watchid, LuaValue thread, int stackFrame)
 {
     AsyncInvoke(delegate()
     {
         System.Diagnostics.Debug.Assert(!thread.IsNil());
         CreateMessage_UpdateWatch(watchid, thread, stackFrame);
         SendMessages();
     }
                 );
 }
Exemple #2
0
 public void RetrieveWatches(LuaValue thread, int stackFrame)
 {
     AsyncInvoke(delegate()
     {
         System.Diagnostics.Debug.Assert(!thread.IsNil());
         CreateMessage_RetrieveWatches(thread, stackFrame);
         SendMessages();
     }
                 );
 }