Changeset 170399 in webkit


Ignore:
Timestamp:
Jun 24, 2014 4:16:37 PM (10 years ago)
Author:
mark.lam@apple.com
Message:

[ftlopt] Renamed DebuggerActivation to DebuggerScope.
<https://webkit.org/b/134273>

Reviewed by Michael Saboff.

Source/JavaScriptCore:

  • CMakeLists.txt:
  • JavaScriptCore.vcxproj/JavaScriptCore.vcxproj:
  • JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • debugger/DebuggerActivation.cpp: Removed.
  • debugger/DebuggerActivation.h: Removed.
  • debugger/DebuggerScope.cpp: Copied from ../../trunk/Source/JavaScriptCore/debugger/DebuggerActivation.cpp.

(JSC::DebuggerScope::DebuggerScope):
(JSC::DebuggerScope::finishCreation):
(JSC::DebuggerScope::visitChildren):
(JSC::DebuggerScope::className):
(JSC::DebuggerScope::getOwnPropertySlot):
(JSC::DebuggerScope::put):
(JSC::DebuggerScope::deleteProperty):
(JSC::DebuggerScope::getOwnPropertyNames):
(JSC::DebuggerScope::defineOwnProperty):
(JSC::DebuggerActivation::DebuggerActivation): Deleted.
(JSC::DebuggerActivation::finishCreation): Deleted.
(JSC::DebuggerActivation::visitChildren): Deleted.
(JSC::DebuggerActivation::className): Deleted.
(JSC::DebuggerActivation::getOwnPropertySlot): Deleted.
(JSC::DebuggerActivation::put): Deleted.
(JSC::DebuggerActivation::deleteProperty): Deleted.
(JSC::DebuggerActivation::getOwnPropertyNames): Deleted.
(JSC::DebuggerActivation::defineOwnProperty): Deleted.

  • debugger/DebuggerScope.h: Copied from ../../trunk/Source/JavaScriptCore/debugger/DebuggerActivation.h.

(JSC::DebuggerScope::create):
(JSC::DebuggerActivation::create): Deleted.

  • runtime/VM.cpp:

(JSC::VM::VM):

  • runtime/VM.h:

Source/WebCore:
No new tests.

  • ForwardingHeaders/debugger/DebuggerActivation.h: Removed.
  • Removed because this is not used.

Source/WebKit/mac:

  • WebView/WebScriptDebugDelegate.mm:
  • Removed unneeded #include.
Location:
branches/ftlopt/Source
Files:
1 deleted
10 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/ftlopt/Source/JavaScriptCore/CMakeLists.txt

    r170382 r170399  
    104104
    105105    debugger/Debugger.cpp
    106     debugger/DebuggerActivation.cpp
    107106    debugger/DebuggerCallFrame.cpp
     107    debugger/DebuggerScope.cpp
    108108
    109109    dfg/DFGAbstractHeap.cpp
  • branches/ftlopt/Source/JavaScriptCore/ChangeLog

    r170383 r170399  
     12014-06-24  Mark Lam  <mark.lam@apple.com>
     2
     3        [ftlopt] Renamed DebuggerActivation to DebuggerScope.
     4        <https://webkit.org/b/134273>
     5
     6        Reviewed by Michael Saboff.
     7
     8        * CMakeLists.txt:
     9        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj:
     10        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:
     11        * JavaScriptCore.xcodeproj/project.pbxproj:
     12        * debugger/DebuggerActivation.cpp: Removed.
     13        * debugger/DebuggerActivation.h: Removed.
     14        * debugger/DebuggerScope.cpp: Copied from ../../trunk/Source/JavaScriptCore/debugger/DebuggerActivation.cpp.
     15        (JSC::DebuggerScope::DebuggerScope):
     16        (JSC::DebuggerScope::finishCreation):
     17        (JSC::DebuggerScope::visitChildren):
     18        (JSC::DebuggerScope::className):
     19        (JSC::DebuggerScope::getOwnPropertySlot):
     20        (JSC::DebuggerScope::put):
     21        (JSC::DebuggerScope::deleteProperty):
     22        (JSC::DebuggerScope::getOwnPropertyNames):
     23        (JSC::DebuggerScope::defineOwnProperty):
     24        (JSC::DebuggerActivation::DebuggerActivation): Deleted.
     25        (JSC::DebuggerActivation::finishCreation): Deleted.
     26        (JSC::DebuggerActivation::visitChildren): Deleted.
     27        (JSC::DebuggerActivation::className): Deleted.
     28        (JSC::DebuggerActivation::getOwnPropertySlot): Deleted.
     29        (JSC::DebuggerActivation::put): Deleted.
     30        (JSC::DebuggerActivation::deleteProperty): Deleted.
     31        (JSC::DebuggerActivation::getOwnPropertyNames): Deleted.
     32        (JSC::DebuggerActivation::defineOwnProperty): Deleted.
     33        * debugger/DebuggerScope.h: Copied from ../../trunk/Source/JavaScriptCore/debugger/DebuggerActivation.h.
     34        (JSC::DebuggerScope::create):
     35        (JSC::DebuggerActivation::create): Deleted.
     36        * runtime/VM.cpp:
     37        (JSC::VM::VM):
     38        * runtime/VM.h:
     39
    1402014-06-24  Filip Pizlo  <fpizlo@apple.com>
    241
  • branches/ftlopt/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj

    r170382 r170399  
    356356    <ClCompile Include="..\bytecompiler\NodesCodegen.cpp" />
    357357    <ClCompile Include="..\debugger\Debugger.cpp" />
    358     <ClCompile Include="..\debugger\DebuggerActivation.cpp" />
    359358    <ClCompile Include="..\debugger\DebuggerCallFrame.cpp" />
     359    <ClCompile Include="..\debugger\DebuggerScope.cpp" />
    360360    <ClCompile Include="..\dfg\DFGAbstractHeap.cpp" />
    361361    <ClCompile Include="..\dfg\DFGAbstractValue.cpp" />
     
    907907    <ClInclude Include="..\debugger\Breakpoint.h" />
    908908    <ClInclude Include="..\debugger\Debugger.h" />
    909     <ClInclude Include="..\debugger\DebuggerActivation.h" />
    910909    <ClInclude Include="..\debugger\DebuggerCallFrame.h" />
    911910    <ClInclude Include="..\debugger\DebuggerPrimitives.h" />
     911    <ClInclude Include="..\debugger\DebuggerScope.h" />
    912912    <ClInclude Include="..\dfg\DFGAbstractHeap.h" />
    913913    <ClInclude Include="..\dfg\DFGAbstractInterpreter.h" />
  • branches/ftlopt/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters

    r168178 r170399  
    208208      <Filter>debugger</Filter>
    209209    </ClCompile>
    210     <ClCompile Include="..\debugger\DebuggerActivation.cpp">
     210    <ClCompile Include="..\debugger\DebuggerCallFrame.cpp">
    211211      <Filter>debugger</Filter>
    212212    </ClCompile>
    213     <ClCompile Include="..\debugger\DebuggerCallFrame.cpp">
     213    <ClCompile Include="..\debugger\DebuggerScope.cpp">
    214214      <Filter>debugger</Filter>
    215215    </ClCompile>
     
    16471647      <Filter>debugger</Filter>
    16481648    </ClInclude>
    1649     <ClInclude Include="..\debugger\DebuggerActivation.h">
    1650       <Filter>debugger</Filter>
    1651     </ClInclude>
    16521649    <ClInclude Include="..\debugger\DebuggerCallFrame.h">
    16531650      <Filter>debugger</Filter>
    16541651    </ClInclude>
    16551652    <ClInclude Include="..\debugger\DebuggerPrimitives.h">
     1653      <Filter>debugger</Filter>
     1654    </ClInclude>
     1655    <ClInclude Include="..\debugger\DebuggerScope.h">
    16561656      <Filter>debugger</Filter>
    16571657    </ClInclude>
  • branches/ftlopt/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r170382 r170399  
    19581958                BC257DE80E1F51C50016B6C9 /* Arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = BC257DE60E1F51C50016B6C9 /* Arguments.h */; };
    19591959                BC3046070E1F497F003232CF /* Error.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3046060E1F497F003232CF /* Error.h */; settings = {ATTRIBUTES = (Private, ); }; };
    1960                 BC3135640F302FA3003DFD3A /* DebuggerActivation.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3135620F302FA3003DFD3A /* DebuggerActivation.h */; settings = {ATTRIBUTES = (Private, ); }; };
    1961                 BC3135650F302FA3003DFD3A /* DebuggerActivation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC3135630F302FA3003DFD3A /* DebuggerActivation.cpp */; };
     1960                BC3135640F302FA3003DFD3A /* DebuggerScope.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3135620F302FA3003DFD3A /* DebuggerScope.h */; settings = {ATTRIBUTES = (Private, ); }; };
     1961                BC3135650F302FA3003DFD3A /* DebuggerScope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC3135630F302FA3003DFD3A /* DebuggerScope.cpp */; };
    19621962                BC6AAAE50E1F426500AD87D8 /* ClassInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BC6AAAE40E1F426500AD87D8 /* ClassInfo.h */; settings = {ATTRIBUTES = (Private, ); }; };
    19631963                BC756FC90E2031B200DE7D12 /* JSGlobalObjectFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = BC756FC70E2031B200DE7D12 /* JSGlobalObjectFunctions.h */; };
     
    35753575                BC2680E60E16D52300A06E92 /* NumberConstructor.lut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NumberConstructor.lut.h; sourceTree = "<group>"; };
    35763576                BC3046060E1F497F003232CF /* Error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Error.h; sourceTree = "<group>"; };
    3577                 BC3135620F302FA3003DFD3A /* DebuggerActivation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebuggerActivation.h; sourceTree = "<group>"; };
    3578                 BC3135630F302FA3003DFD3A /* DebuggerActivation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DebuggerActivation.cpp; sourceTree = "<group>"; };
     3577                BC3135620F302FA3003DFD3A /* DebuggerScope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DebuggerScope.h; sourceTree = "<group>"; };
     3578                BC3135630F302FA3003DFD3A /* DebuggerScope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DebuggerScope.cpp; sourceTree = "<group>"; };
    35793579                BC337BDE0E1AF0B80076918A /* GetterSetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GetterSetter.h; sourceTree = "<group>"; };
    35803580                BC337BEA0E1B00CB0076918A /* Error.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Error.cpp; sourceTree = "<group>"; };
     
    44134413                                F692A8580255597D01FF60F7 /* Debugger.cpp */,
    44144414                                F692A8590255597D01FF60F7 /* Debugger.h */,
    4415                                 BC3135630F302FA3003DFD3A /* DebuggerActivation.cpp */,
    4416                                 BC3135620F302FA3003DFD3A /* DebuggerActivation.h */,
    44174415                                149559ED0DDCDDF700648087 /* DebuggerCallFrame.cpp */,
    44184416                                1480DB9B0DDC227F003CFDF2 /* DebuggerCallFrame.h */,
    44194417                                FEA0861F182B7A0400F6D851 /* DebuggerPrimitives.h */,
     4418                                BC3135630F302FA3003DFD3A /* DebuggerScope.cpp */,
     4419                                BC3135620F302FA3003DFD3A /* DebuggerScope.h */,
    44204420                        );
    44214421                        path = debugger;
     
    60016001                                BCD203E80E1718F4002C7E82 /* DatePrototype.lut.h in Headers */,
    60026002                                BC18C3FA0E16F5CD00B34460 /* Debugger.h in Headers */,
    6003                                 BC3135640F302FA3003DFD3A /* DebuggerActivation.h in Headers */,
    60046003                                BC18C3FB0E16F5CD00B34460 /* DebuggerCallFrame.h in Headers */,
    60056004                                FEA08621182B7A0400F6D851 /* DebuggerPrimitives.h in Headers */,
     6005                                BC3135640F302FA3003DFD3A /* DebuggerScope.h in Headers */,
    60066006                                0F136D4D174AD69E0075B354 /* DeferGC.h in Headers */,
    60076007                                0FC712DF17CD877C008CC93C /* DeferredCompilationCallback.h in Headers */,
     
    76017601                                147F39C6107EC37600427A48 /* DatePrototype.cpp in Sources */,
    76027602                                14280823107EC02C0013E7B2 /* Debugger.cpp in Sources */,
    7603                                 BC3135650F302FA3003DFD3A /* DebuggerActivation.cpp in Sources */,
    76047603                                149559EE0DDCDDF700648087 /* DebuggerCallFrame.cpp in Sources */,
     7604                                BC3135650F302FA3003DFD3A /* DebuggerScope.cpp in Sources */,
    76057605                                2A7A58EF1808A4C40020BDF7 /* DeferGC.cpp in Sources */,
    76067606                                0FC712DE17CD8779008CC93C /* DeferredCompilationCallback.cpp in Sources */,
  • branches/ftlopt/Source/JavaScriptCore/debugger/DebuggerScope.cpp

    r170392 r170399  
    11/*
    2  * Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
     2 * Copyright (C) 2008-2009, 2014 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2525
    2626#include "config.h"
    27 #include "DebuggerActivation.h"
     27#include "DebuggerScope.h"
    2828
    2929#include "JSActivation.h"
     
    3232namespace JSC {
    3333
    34 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(DebuggerActivation);
     34STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(DebuggerScope);
    3535
    36 const ClassInfo DebuggerActivation::s_info = { "DebuggerActivation", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(DebuggerActivation) };
     36const ClassInfo DebuggerScope::s_info = { "DebuggerScope", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(DebuggerScope) };
    3737
    38 DebuggerActivation::DebuggerActivation(VM& vm)
    39     : JSNonFinalObject(vm, vm.debuggerActivationStructure.get())
     38DebuggerScope::DebuggerScope(VM& vm)
     39    : JSNonFinalObject(vm, vm.debuggerScopeStructure.get())
    4040{
    4141}
    4242
    43 void DebuggerActivation::finishCreation(VM& vm, JSObject* activation)
     43void DebuggerScope::finishCreation(VM& vm, JSObject* activation)
    4444{
    4545    Base::finishCreation(vm);
     
    4949}
    5050
    51 void DebuggerActivation::visitChildren(JSCell* cell, SlotVisitor& visitor)
     51void DebuggerScope::visitChildren(JSCell* cell, SlotVisitor& visitor)
    5252{
    53     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(cell);
     53    DebuggerScope* thisObject = jsCast<DebuggerScope*>(cell);
    5454    ASSERT_GC_OBJECT_INHERITS(thisObject, info());
    5555    COMPILE_ASSERT(StructureFlags & OverridesVisitChildren, OverridesVisitChildrenWithoutSettingFlag);
     
    6060}
    6161
    62 String DebuggerActivation::className(const JSObject* object)
     62String DebuggerScope::className(const JSObject* object)
    6363{
    64     const DebuggerActivation* thisObject = jsCast<const DebuggerActivation*>(object);
     64    const DebuggerScope* thisObject = jsCast<const DebuggerScope*>(object);
    6565    return thisObject->m_activation->methodTable()->className(thisObject->m_activation.get());
    6666}
    6767
    68 bool DebuggerActivation::getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
     68bool DebuggerScope::getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
    6969{
    70     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(object);
     70    DebuggerScope* thisObject = jsCast<DebuggerScope*>(object);
    7171    return thisObject->m_activation->methodTable()->getOwnPropertySlot(thisObject->m_activation.get(), exec, propertyName, slot);
    7272}
    7373
    74 void DebuggerActivation::put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot)
     74void DebuggerScope::put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot)
    7575{
    76     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(cell);
     76    DebuggerScope* thisObject = jsCast<DebuggerScope*>(cell);
    7777    thisObject->m_activation->methodTable()->put(thisObject->m_activation.get(), exec, propertyName, value, slot);
    7878}
    7979
    80 bool DebuggerActivation::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName)
     80bool DebuggerScope::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName)
    8181{
    82     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(cell);
     82    DebuggerScope* thisObject = jsCast<DebuggerScope*>(cell);
    8383    return thisObject->m_activation->methodTable()->deleteProperty(thisObject->m_activation.get(), exec, propertyName);
    8484}
    8585
    86 void DebuggerActivation::getOwnPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
     86void DebuggerScope::getOwnPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
    8787{
    88     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(object);
     88    DebuggerScope* thisObject = jsCast<DebuggerScope*>(object);
    8989    thisObject->m_activation->methodTable()->getPropertyNames(thisObject->m_activation.get(), exec, propertyNames, mode);
    9090}
    9191
    92 bool DebuggerActivation::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow)
     92bool DebuggerScope::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow)
    9393{
    94     DebuggerActivation* thisObject = jsCast<DebuggerActivation*>(object);
     94    DebuggerScope* thisObject = jsCast<DebuggerScope*>(object);
    9595    return thisObject->m_activation->methodTable()->defineOwnProperty(thisObject->m_activation.get(), exec, propertyName, descriptor, shouldThrow);
    9696}
  • branches/ftlopt/Source/JavaScriptCore/debugger/DebuggerScope.h

    r170392 r170399  
    11/*
    2  * Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
     2 * Copyright (C) 2008-2009, 2014 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2424 */
    2525
    26 #ifndef DebuggerActivation_h
    27 #define DebuggerActivation_h
     26#ifndef DebuggerScope_h
     27#define DebuggerScope_h
    2828
    2929#include "JSObject.h"
     
    3131namespace JSC {
    3232
    33 class DebuggerActivation : public JSNonFinalObject {
     33class DebuggerScope : public JSNonFinalObject {
    3434public:
    3535    typedef JSNonFinalObject Base;
    3636
    37     static DebuggerActivation* create(VM& vm, JSObject* object)
     37    static DebuggerScope* create(VM& vm, JSObject* object)
    3838    {
    39         DebuggerActivation* activation = new (NotNull, allocateCell<DebuggerActivation>(vm.heap)) DebuggerActivation(vm);
     39        DebuggerScope* activation = new (NotNull, allocateCell<DebuggerScope>(vm.heap)) DebuggerScope(vm);
    4040        activation->finishCreation(vm, object);
    4141        return activation;
     
    6363
    6464private:
    65     JS_EXPORT_PRIVATE DebuggerActivation(VM&);
     65    JS_EXPORT_PRIVATE DebuggerScope(VM&);
    6666    WriteBarrier<JSActivation> m_activation;
    6767};
     
    6969} // namespace JSC
    7070
    71 #endif // DebuggerActivation_h
     71#endif // DebuggerScope_h
  • branches/ftlopt/Source/JavaScriptCore/runtime/VM.cpp

    r166876 r170399  
    4040#include "DFGLongLivedState.h"
    4141#include "DFGWorklist.h"
    42 #include "DebuggerActivation.h"
     42#include "DebuggerScope.h"
    4343#include "ErrorInstance.h"
    4444#include "FTLThunks.h"
     
    252252    structureStructure.set(*this, Structure::createStructure(*this));
    253253    structureRareDataStructure.set(*this, StructureRareData::createStructure(*this, 0, jsNull()));
    254     debuggerActivationStructure.set(*this, DebuggerActivation::createStructure(*this, 0, jsNull()));
     254    debuggerScopeStructure.set(*this, DebuggerScope::createStructure(*this, 0, jsNull()));
    255255    terminatedExecutionErrorStructure.set(*this, TerminatedExecutionError::createStructure(*this, 0, jsNull()));
    256256    stringStructure.set(*this, JSString::createStructure(*this, 0, jsNull()));
  • branches/ftlopt/Source/JavaScriptCore/runtime/VM.h

    r167605 r170399  
    257257        Strong<Structure> structureStructure;
    258258        Strong<Structure> structureRareDataStructure;
    259         Strong<Structure> debuggerActivationStructure;
     259        Strong<Structure> debuggerScopeStructure;
    260260        Strong<Structure> terminatedExecutionErrorStructure;
    261261        Strong<Structure> stringStructure;
  • branches/ftlopt/Source/WebCore/ChangeLog

    r168514 r170399  
     12014-06-24  Mark Lam  <mark.lam@apple.com>
     2
     3        [ftlopt] Renamed DebuggerActivation to DebuggerScope.
     4        <https://webkit.org/b/134273>
     5
     6        Reviewed by Michael Saboff.
     7
     8        No new tests.
     9
     10        * ForwardingHeaders/debugger/DebuggerActivation.h: Removed.
     11        - Removed because this is not used.
     12
    1132014-05-08  Simon Fraser  <simon.fraser@apple.com>
    214
  • branches/ftlopt/Source/WebKit/mac/ChangeLog

    r168512 r170399  
     12014-06-24  Mark Lam  <mark.lam@apple.com>
     2
     3        [ftlopt] Renamed DebuggerActivation to DebuggerScope.
     4        <https://webkit.org/b/134273>
     5
     6        Reviewed by Michael Saboff.
     7
     8        * WebView/WebScriptDebugDelegate.mm:
     9        - Removed unneeded #include.
     10
    1112014-05-08  Jer Noble  <jer.noble@apple.com>
    212
  • branches/ftlopt/Source/WebKit/mac/WebView/WebScriptDebugDelegate.mm

    r165676 r170399  
    3838#import <WebCore/runtime_root.h>
    3939#import <debugger/Debugger.h>
    40 #import <debugger/DebuggerActivation.h>
    4140#import <interpreter/CallFrame.h>
    4241#import <runtime/Completion.h>
Note: See TracChangeset for help on using the changeset viewer.