Rhino.Context.GetDebuggableView C# (CSharp) Method

GetDebuggableView() public static method

Return DebuggableScript instance if any associated with the script.
Return DebuggableScript instance if any associated with the script. If callable supports DebuggableScript implementation, the method returns it. Otherwise null is returned.
public static GetDebuggableView ( System.Script script ) : DebuggableScript
script System.Script
return DebuggableScript
		public static DebuggableScript GetDebuggableView(Script script)
		{
			if (script is NativeFunction)
			{
				return ((NativeFunction)script).GetDebuggableView();
			}
			return null;
		}
Context