Rhino.TopLevel.GetBuiltinCtor C# (CSharp) Method

GetBuiltinCtor() public method

Get the cached built-in object constructor from this scope with the given type.
Get the cached built-in object constructor from this scope with the given type. Returns null if CacheBuiltins() has not been called on this object.
public GetBuiltinCtor ( TopLevel type ) : BaseFunction
type TopLevel the built-in type
return BaseFunction
		public virtual BaseFunction GetBuiltinCtor(TopLevel.Builtins type)
		{
			return ctors != null ? ctors.Get(type) : null;
		}

Same methods

TopLevel::GetBuiltinCtor ( Context cx, Scriptable scope, TopLevel type ) : Function