summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/ConstructData.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/ConstructData.h')
-rw-r--r--Source/JavaScriptCore/runtime/ConstructData.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/ConstructData.h b/Source/JavaScriptCore/runtime/ConstructData.h
index d7a3c73d3..6426b044e 100644
--- a/Source/JavaScriptCore/runtime/ConstructData.h
+++ b/Source/JavaScriptCore/runtime/ConstructData.h
@@ -38,7 +38,7 @@ namespace JSC {
class ExecState;
class FunctionExecutable;
class JSObject;
- class ScopeChainNode;
+ class JSScope;
enum ConstructType {
ConstructTypeNone,
@@ -52,7 +52,7 @@ namespace JSC {
} native;
struct {
FunctionExecutable* functionExecutable;
- ScopeChainNode* scopeChain;
+ JSScope* scope;
} js;
};