summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/runtime/ConstructData.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/runtime/ConstructData.h')
-rw-r--r--JavaScriptCore/runtime/ConstructData.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/JavaScriptCore/runtime/ConstructData.h b/JavaScriptCore/runtime/ConstructData.h
index 6b954a6..3d5f732 100644
--- a/JavaScriptCore/runtime/ConstructData.h
+++ b/JavaScriptCore/runtime/ConstructData.h
@@ -29,13 +29,14 @@
#ifndef ConstructData_h
#define ConstructData_h
+#include "JSValue.h"
+
namespace JSC {
class ArgList;
class ExecState;
class FunctionExecutable;
class JSObject;
- class JSValue;
class ScopeChainNode;
enum ConstructType {
@@ -44,7 +45,7 @@ namespace JSC {
ConstructTypeJS
};
- typedef JSObject* (*NativeConstructor)(ExecState*, JSObject*, const ArgList&);
+ typedef EncodedJSValue (JSC_HOST_CALL *NativeConstructor)(ExecState*);
union ConstructData {
struct {