Changeset 127211 in webkit for trunk/Source/JavaScriptCore/interpreter/CallFrame.h
- Timestamp:
- Aug 30, 2012, 4:36:41 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.h
r127202 r127211 54 54 // Global object in which the currently executing code was defined. 55 55 // Differs from dynamicGlobalObject() during function calls across web browser frames. 56 inlineJSGlobalObject* lexicalGlobalObject() const;56 JSGlobalObject* lexicalGlobalObject() const; 57 57 58 58 // Differs from lexicalGlobalObject because this will have DOM window shell rather than 59 59 // the actual DOM window, which can't be "this" for security reasons. 60 inlineJSObject* globalThisValue() const;61 62 inlineJSGlobalData& globalData() const;60 JSObject* globalThisValue() const; 61 62 JSGlobalData& globalData() const; 63 63 64 64 // Convenience functions for access to global data. … … 184 184 185 185 // Read a register from the codeframe (or constant from the CodeBlock). 186 inlineRegister& r(int);186 Register& r(int); 187 187 // Read a register for a non-constant 188 inlineRegister& uncheckedR(int);188 Register& uncheckedR(int); 189 189 190 190 // Access to arguments.
Note:
See TracChangeset
for help on using the changeset viewer.