Title: [160115] trunk/Source/_javascript_Core
- Revision
- 160115
- Author
- [email protected]
- Date
- 2013-12-04 12:40:43 -0800 (Wed, 04 Dec 2013)
Log Message
Remove unneeded semicolons.
https://bugs.webkit.org/show_bug.cgi?id=125083.
Rubber-stamped by Filip Pizlo.
* debugger/Debugger.h:
(JSC::Debugger::detach):
(JSC::Debugger::sourceParsed):
(JSC::Debugger::exception):
(JSC::Debugger::atStatement):
(JSC::Debugger::callEvent):
(JSC::Debugger::returnEvent):
(JSC::Debugger::willExecuteProgram):
(JSC::Debugger::didExecuteProgram):
(JSC::Debugger::didReachBreakpoint):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (160114 => 160115)
--- trunk/Source/_javascript_Core/ChangeLog 2013-12-04 20:34:12 UTC (rev 160114)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-12-04 20:40:43 UTC (rev 160115)
@@ -1,3 +1,21 @@
+2013-12-04 Mark Lam <[email protected]>
+
+ Remove unneeded semicolons.
+ https://bugs.webkit.org/show_bug.cgi?id=125083.
+
+ Rubber-stamped by Filip Pizlo.
+
+ * debugger/Debugger.h:
+ (JSC::Debugger::detach):
+ (JSC::Debugger::sourceParsed):
+ (JSC::Debugger::exception):
+ (JSC::Debugger::atStatement):
+ (JSC::Debugger::callEvent):
+ (JSC::Debugger::returnEvent):
+ (JSC::Debugger::willExecuteProgram):
+ (JSC::Debugger::didExecuteProgram):
+ (JSC::Debugger::didReachBreakpoint):
+
2013-12-04 Andy Estes <[email protected]>
[iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
Modified: trunk/Source/_javascript_Core/debugger/Debugger.h (160114 => 160115)
--- trunk/Source/_javascript_Core/debugger/Debugger.h 2013-12-04 20:34:12 UTC (rev 160114)
+++ trunk/Source/_javascript_Core/debugger/Debugger.h 2013-12-04 20:40:43 UTC (rev 160115)
@@ -198,15 +198,15 @@
Debugger(bool = false) { }
bool needsOpDebugCallbacks() const { return false; }
bool needsExceptionCallbacks() const { return false; }
- void detach(JSGlobalObject*) { };
- void sourceParsed(ExecState*, SourceProvider*, int, const WTF::String&) { };
- void exception(CallFrame*, JSValue, bool) { };
- void atStatement(CallFrame*) { };
- void callEvent(CallFrame*) { };
- void returnEvent(CallFrame*) { };
- void willExecuteProgram(CallFrame*) { };
- void didExecuteProgram(CallFrame*) { };
- void didReachBreakpoint(CallFrame*) { };
+ void detach(JSGlobalObject*) { }
+ void sourceParsed(ExecState*, SourceProvider*, int, const WTF::String&) { }
+ void exception(CallFrame*, JSValue, bool) { }
+ void atStatement(CallFrame*) { }
+ void callEvent(CallFrame*) { }
+ void returnEvent(CallFrame*) { }
+ void willExecuteProgram(CallFrame*) { }
+ void didExecuteProgram(CallFrame*) { }
+ void didReachBreakpoint(CallFrame*) { }
};
#endif // ENABLE(_javascript__DEBUGGER)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes