Changeset 173410 in webkit for trunk/Source/JavaScriptCore/interpreter
- Timestamp:
- Sep 8, 2014, 5:21:24 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore/interpreter
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrameInlines.h
r173402 r173410 29 29 #include "CallFrame.h" 30 30 #include "CodeBlock.h" 31 #include "JSScope.h"32 31 33 32 namespace JSC { … … 149 148 } 150 149 151 inline VM& CallFrame::vm() const152 {153 ASSERT(scope()->vm());154 return *scope()->vm();155 }156 157 inline JSGlobalObject* CallFrame::lexicalGlobalObject() const158 {159 return scope()->globalObject();160 }161 162 inline JSObject* CallFrame::globalThisValue() const163 {164 return scope()->globalThis();165 }166 167 150 } // namespace JSC 168 151
Note:
See TracChangeset
for help on using the changeset viewer.