summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/runtime/ArgList.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/runtime/ArgList.h')
-rw-r--r--JavaScriptCore/runtime/ArgList.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/JavaScriptCore/runtime/ArgList.h b/JavaScriptCore/runtime/ArgList.h
index 8e1fdbe..cd563a2 100644
--- a/JavaScriptCore/runtime/ArgList.h
+++ b/JavaScriptCore/runtime/ArgList.h
@@ -22,6 +22,7 @@
#ifndef ArgList_h
#define ArgList_h
+#include "CallFrame.h"
#include "Register.h"
#include <wtf/HashSet.h>
#include <wtf/Noncopyable.h>
@@ -187,6 +188,12 @@ namespace JSC {
{
}
+ ArgList(ExecState* exec)
+ : m_args(reinterpret_cast<JSValue*>(&exec[exec->hostThisRegister() + 1]))
+ , m_argCount(exec->argumentCount())
+ {
+ }
+
ArgList(JSValue* args, unsigned argCount)
: m_args(args)
, m_argCount(argCount)