summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/interpreter/Register.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/interpreter/Register.h')
-rw-r--r--Source/JavaScriptCore/interpreter/Register.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/JavaScriptCore/interpreter/Register.h b/Source/JavaScriptCore/interpreter/Register.h
index a4a76b865..f056a1c8f 100644
--- a/Source/JavaScriptCore/interpreter/Register.h
+++ b/Source/JavaScriptCore/interpreter/Register.h
@@ -40,7 +40,7 @@ namespace JSC {
class JSActivation;
class JSObject;
class JSPropertyNameIterator;
- class ScopeChainNode;
+ class JSScope;
struct InlineCallFrame;
struct Instruction;
@@ -59,7 +59,7 @@ namespace JSC {
Register& operator=(CallFrame*);
Register& operator=(CodeBlock*);
- Register& operator=(ScopeChainNode*);
+ Register& operator=(JSScope*);
Register& operator=(Instruction*);
Register& operator=(InlineCallFrame*);
@@ -69,7 +69,7 @@ namespace JSC {
CodeBlock* codeBlock() const;
JSObject* function() const;
JSPropertyNameIterator* propertyNameIterator() const;
- ScopeChainNode* scopeChain() const;
+ JSScope* scope() const;
Instruction* vPC() const;
InlineCallFrame* asInlineCallFrame() const;
int32_t unboxedInt32() const;