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