Ignore:
Timestamp:
Sep 8, 2014, 5:21:24 PM (11 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r173402.
https://bugs.webkit.org/show_bug.cgi?id=136649

Breaking buildw with error "unable to restore file position to
0x00000c60 for section DWARF.debug_info (errno = 9)"
(Requested by mlam_ on #webkit).

Reverted changeset:

"Move CallFrame and Register inlines functions out of
JSScope.h."
https://bugs.webkit.org/show_bug.cgi?id=136579
http://trac.webkit.org/changeset/173402

Location:
trunk/Source/JavaScriptCore/interpreter
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/CallFrameInlines.h

    r173402 r173410  
    2929#include "CallFrame.h"
    3030#include "CodeBlock.h"
    31 #include "JSScope.h"
    3231
    3332namespace JSC  {
     
    149148}
    150149
    151 inline VM& CallFrame::vm() const
    152 {
    153     ASSERT(scope()->vm());
    154     return *scope()->vm();
    155 }
    156 
    157 inline JSGlobalObject* CallFrame::lexicalGlobalObject() const
    158 {
    159     return scope()->globalObject();
    160 }
    161 
    162 inline JSObject* CallFrame::globalThisValue() const
    163 {
    164     return scope()->globalThis();
    165 }
    166 
    167150} // namespace JSC
    168151
Note: See TracChangeset for help on using the changeset viewer.