Changeset 155586 in webkit
- Timestamp:
- Sep 11, 2013, 7:26:14 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r155578 r155586 1 2013-09-11 Mark Lam <mark.lam@apple.com> 2 3 Fixed indentation in JSC Debugger header files. 4 https://bugs.webkit.org/show_bug.cgi?id=121203. 5 6 Reviewed by Ryosuke Niwa. 7 8 * debugger/Debugger.h: 9 * debugger/DebuggerActivation.h: 10 (JSC::DebuggerActivation::create): 11 (JSC::DebuggerActivation::createStructure): 12 * debugger/DebuggerCallFrame.h: 13 (JSC::DebuggerCallFrame::DebuggerCallFrame): 14 (JSC::DebuggerCallFrame::callFrame): 15 (JSC::DebuggerCallFrame::dynamicGlobalObject): 16 (JSC::DebuggerCallFrame::scope): 17 (JSC::DebuggerCallFrame::exception): 18 1 19 2013-09-11 Filip Pizlo <fpizlo@apple.com> 2 20 -
trunk/Source/JavaScriptCore/debugger/Debugger.h
r148696 r155586 27 27 namespace JSC { 28 28 29 30 31 32 33 34 29 class DebuggerCallFrame; 30 class ExecState; 31 class VM; 32 class JSGlobalObject; 33 class JSValue; 34 class SourceProvider; 35 35 36 37 38 36 class JS_EXPORT_PRIVATE Debugger { 37 public: 38 virtual ~Debugger(); 39 39 40 41 40 void attach(JSGlobalObject*); 41 virtual void detach(JSGlobalObject*); 42 42 43 43 virtual void sourceParsed(ExecState*, SourceProvider*, int errorLineNumber, const WTF::String& errorMessage) = 0; 44 44 45 46 47 48 45 virtual void exception(const DebuggerCallFrame&, intptr_t, int, int, bool) = 0; 46 virtual void atStatement(const DebuggerCallFrame&, intptr_t, int, int) = 0; 47 virtual void callEvent(const DebuggerCallFrame&, intptr_t, int, int) = 0; 48 virtual void returnEvent(const DebuggerCallFrame&, intptr_t, int, int) = 0; 49 49 50 51 52 50 virtual void willExecuteProgram(const DebuggerCallFrame&, intptr_t, int, int) = 0; 51 virtual void didExecuteProgram(const DebuggerCallFrame&, intptr_t, int, int) = 0; 52 virtual void didReachBreakpoint(const DebuggerCallFrame&, intptr_t, int, int) = 0; 53 53 54 void recompileAllJSFunctions(VM*); 54 55 55 void recompileAllJSFunctions(VM*); 56 private: 57 HashSet<JSGlobalObject*> m_globalObjects; 58 }; 56 59 57 private: 58 HashSet<JSGlobalObject*> m_globalObjects; 59 }; 60 61 // This function exists only for backwards compatibility with existing WebScriptDebugger clients. 62 JS_EXPORT_PRIVATE JSValue evaluateInGlobalCallFrame(const WTF::String&, JSValue& exception, JSGlobalObject*); 60 // This function exists only for backwards compatibility with existing WebScriptDebugger clients. 61 JS_EXPORT_PRIVATE JSValue evaluateInGlobalCallFrame(const WTF::String&, JSValue& exception, JSGlobalObject*); 63 62 64 63 } // namespace JSC -
trunk/Source/JavaScriptCore/debugger/DebuggerActivation.h
r154459 r155586 31 31 namespace JSC { 32 32 33 34 35 33 class DebuggerActivation : public JSNonFinalObject { 34 public: 35 typedef JSNonFinalObject Base; 36 36 37 38 39 40 41 42 37 static DebuggerActivation* create(VM& vm, JSObject* object) 38 { 39 DebuggerActivation* activation = new (NotNull, allocateCell<DebuggerActivation>(vm.heap)) DebuggerActivation(vm); 40 activation->finishCreation(vm, object); 41 return activation; 42 } 43 43 44 45 46 47 48 49 50 44 static void visitChildren(JSCell*, SlotVisitor&); 45 static String className(const JSObject*); 46 static bool getOwnPropertySlot(JSObject*, ExecState*, PropertyName, PropertySlot&); 47 static void put(JSCell*, ExecState*, PropertyName, JSValue, PutPropertySlot&); 48 static bool deleteProperty(JSCell*, ExecState*, PropertyName); 49 static void getOwnPropertyNames(JSObject*, ExecState*, PropertyNameArray&, EnumerationMode); 50 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow); 51 51 52 52 DECLARE_EXPORT_INFO; 53 53 54 55 56 57 54 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) 55 { 56 return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); 57 } 58 58 59 60 59 protected: 60 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesVisitChildren | JSObject::StructureFlags; 61 61 62 62 JS_EXPORT_PRIVATE void finishCreation(VM&, JSObject* activation); 63 63 64 65 66 67 64 private: 65 JS_EXPORT_PRIVATE DebuggerActivation(VM&); 66 WriteBarrier<JSActivation> m_activation; 67 }; 68 68 69 69 } // namespace JSC -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h
r128265 r155586 34 34 namespace JSC { 35 35 36 37 38 36 class DebuggerCallFrame { 37 public: 38 enum Type { ProgramType, FunctionType }; 39 39 40 41 42 43 40 DebuggerCallFrame(CallFrame* callFrame) 41 : m_callFrame(callFrame) 42 { 43 } 44 44 45 46 47 48 49 45 DebuggerCallFrame(CallFrame* callFrame, JSValue exception) 46 : m_callFrame(callFrame) 47 , m_exception(exception) 48 { 49 } 50 50 51 52 53 54 55 56 57 58 59 51 CallFrame* callFrame() const { return m_callFrame; } 52 JSGlobalObject* dynamicGlobalObject() const { return m_callFrame->dynamicGlobalObject(); } 53 JSScope* scope() const { return m_callFrame->scope(); } 54 JS_EXPORT_PRIVATE String functionName() const; 55 JS_EXPORT_PRIVATE String calculatedFunctionName() const; 56 JS_EXPORT_PRIVATE Type type() const; 57 JS_EXPORT_PRIVATE JSObject* thisObject() const; 58 JS_EXPORT_PRIVATE JSValue evaluate(const String&, JSValue& exception) const; 59 JSValue exception() const { return m_exception; } 60 60 61 62 63 64 61 private: 62 CallFrame* m_callFrame; 63 JSValue m_exception; 64 }; 65 65 66 66 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.