public ObjectInstance Construct(JsValue[] arguments) { var instance = new ErrorInstance(Engine, _name); instance.Prototype = PrototypeObject; instance.Extensible = true; if (arguments.At(0) != Undefined.Instance) { instance.Put("message", TypeConverter.ToString(arguments.At(0)), false); } return instance; }
public ObjectInstance Construct(JsValue[] arguments) { var instance = new ErrorInstance(Engine, _name); instance.Prototype = PrototypeObject; instance.Extensible = true; if (arguments.At(0) != Undefined.Instance) { instance.Put("message", TypeConverter.ToString(arguments.At(0)), false); } return(instance); }