2
0

ArgumentsObject.cs 373 B

123456789101112131415
  1. using Jint.Native.Object;
  2. namespace Jint.Native.Function
  3. {
  4. /// <summary>
  5. /// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6
  6. /// </summary>
  7. public class ArgumentsInstance : ObjectInstance
  8. {
  9. public ArgumentsInstance(ObjectInstance prototype) : base(prototype)
  10. {
  11. // todo: complete implementation
  12. }
  13. }
  14. }