Rhino.NativeFunction.Decompile C# (CSharp) Method

Decompile() final private method

final private Decompile ( int indent, int flags ) : string
indent int How much to indent the decompiled result
flags int Flags specifying format of decompilation output
return string
		internal sealed override string Decompile(int indent, int flags)
		{
			string encodedSource = GetEncodedSource();
			if (encodedSource == null)
			{
				return base.Decompile(indent, flags);
			}
			else
			{
				UintMap properties = new UintMap(1);
				properties.Put(Decompiler.INITIAL_INDENT_PROP, indent);
				return Decompiler.Decompile(encodedSource, flags, properties);
			}
		}