summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/CallData.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/CallData.h')
-rw-r--r--Source/JavaScriptCore/runtime/CallData.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/CallData.h b/Source/JavaScriptCore/runtime/CallData.h
index 15a6a0a48..77478304c 100644
--- a/Source/JavaScriptCore/runtime/CallData.h
+++ b/Source/JavaScriptCore/runtime/CallData.h
@@ -37,7 +37,7 @@ namespace JSC {
class ExecState;
class FunctionExecutable;
class JSObject;
- class ScopeChainNode;
+ class JSScope;
enum CallType {
CallTypeNone,
@@ -53,7 +53,7 @@ namespace JSC {
} native;
struct {
FunctionExecutable* functionExecutable;
- ScopeChainNode* scopeChain;
+ JSScope* scope;
} js;
};