IConstructor.cs 220 B

12345678910
  1. using Jint.Native.Object;
  2. namespace Jint.Native
  3. {
  4. public interface IConstructor
  5. {
  6. JsValue Call(JsValue thisObject, JsValue[] arguments);
  7. ObjectInstance Construct(JsValue[] arguments);
  8. }
  9. }