Changeset 160115 in webkit
- Timestamp:
- Dec 4, 2013, 12:40:43 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r160111 r160115 1 2013-12-04 Mark Lam <mark.lam@apple.com> 2 3 Remove unneeded semicolons. 4 https://bugs.webkit.org/show_bug.cgi?id=125083. 5 6 Rubber-stamped by Filip Pizlo. 7 8 * debugger/Debugger.h: 9 (JSC::Debugger::detach): 10 (JSC::Debugger::sourceParsed): 11 (JSC::Debugger::exception): 12 (JSC::Debugger::atStatement): 13 (JSC::Debugger::callEvent): 14 (JSC::Debugger::returnEvent): 15 (JSC::Debugger::willExecuteProgram): 16 (JSC::Debugger::didExecuteProgram): 17 (JSC::Debugger::didReachBreakpoint): 18 1 19 2013-12-04 Andy Estes <aestes@apple.com> 2 20 -
trunk/Source/JavaScriptCore/debugger/Debugger.h
r160082 r160115 199 199 bool needsOpDebugCallbacks() const { return false; } 200 200 bool needsExceptionCallbacks() const { return false; } 201 void detach(JSGlobalObject*) { } ;202 void sourceParsed(ExecState*, SourceProvider*, int, const WTF::String&) { } ;203 void exception(CallFrame*, JSValue, bool) { } ;204 void atStatement(CallFrame*) { } ;205 void callEvent(CallFrame*) { } ;206 void returnEvent(CallFrame*) { } ;207 void willExecuteProgram(CallFrame*) { } ;208 void didExecuteProgram(CallFrame*) { } ;209 void didReachBreakpoint(CallFrame*) { } ;201 void detach(JSGlobalObject*) { } 202 void sourceParsed(ExecState*, SourceProvider*, int, const WTF::String&) { } 203 void exception(CallFrame*, JSValue, bool) { } 204 void atStatement(CallFrame*) { } 205 void callEvent(CallFrame*) { } 206 void returnEvent(CallFrame*) { } 207 void willExecuteProgram(CallFrame*) { } 208 void didExecuteProgram(CallFrame*) { } 209 void didReachBreakpoint(CallFrame*) { } 210 210 }; 211 211
Note:
See TracChangeset
for help on using the changeset viewer.