- using Jint.Native.Object;
- namespace Jint.Native.Function
- {
- /// <summary>
- /// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6
- /// </summary>
- public class ArgumentsInstance : ObjectInstance
- {
- public ArgumentsInstance(ObjectInstance prototype) : base(prototype)
- {
- // todo: complete implementation
- }
- }
- }
|