Rhino.BaseFunction.FillConstructorProperties C# (CSharp) Method

FillConstructorProperties() protected method

protected FillConstructorProperties ( IdFunctionObject ctor ) : void
ctor IdFunctionObject
return void
		protected internal override void FillConstructorProperties(IdFunctionObject ctor)
		{
			// Fix up bootstrapping problem: getPrototype of the IdFunctionObject
			// can not return Function.prototype because Function object is not
			// yet defined.
			ctor.SetPrototype(this);
			base.FillConstructorProperties(ctor);
		}