Example #1
0
 public void Attach(Script S, string scriptName, bool freeRunAfterAttach = false)
 {
     lock (m_Lock)
     {
         DebugServer d = new DebugServer(scriptName, S, m_RpcPortMax, m_Options.NetworkOptions, freeRunAfterAttach);
         S.AttachDebugger(d);
         m_DebugServers.Add(d);
     }
 }
Example #2
0
		public void Attach(Script S, string scriptName, bool freeRunAfterAttach = false)
		{
			lock (m_Lock)
			{
				DebugServer d = new DebugServer(scriptName, S, m_RpcPortMax, m_Options.NetworkOptions, freeRunAfterAttach);
				S.AttachDebugger(d);
				m_DebugServers.Add(d);
			}
		}