Rhino.NativeScript.Decompile C# (CSharp) Method

Decompile() private method

private Decompile ( int indent, int flags ) : string
indent int
flags int
return string
		internal override string Decompile(int indent, int flags)
		{
			if (script is NativeFunction)
			{
				return ((NativeFunction)script).Decompile(indent, flags);
			}
			return base.Decompile(indent, flags);
		}