Rhino.Tools.Debugger.Dim.DimIProxy.HandleCompilationDone C# (CSharp) Метод

HandleCompilationDone() публичный Метод

Called when compilation is finished.
Called when compilation is finished.
public HandleCompilationDone ( Context cx, DebuggableScript fnOrScript, string source ) : void
cx Rhino.Context
fnOrScript DebuggableScript
source string
Результат void
			public virtual void HandleCompilationDone(Context cx, DebuggableScript fnOrScript, string source)
			{
				if (type != IPROXY_DEBUG)
				{
					Kit.CodeBug();
				}
				if (!fnOrScript.IsTopLevel())
				{
					return;
				}
				dim.RegisterTopScript(fnOrScript, source);
			}
		}