Reviewers: Søren Gjesse, Description: Fix typo and remove undefined, unused API function from include/v8-debug.h
Please review this at http://codereview.chromium.org/9504 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M include/v8-debug.h Index: include/v8-debug.h =================================================================== --- include/v8-debug.h (revision 709) +++ include/v8-debug.h (working copy) @@ -82,8 +82,8 @@ /** * Debug event callback function. * - * \param event the debug event from which occoured (from the DebugEvent - * enumeration) + * \param event the type of the debug event that triggered the callback + * (enum DebugEvent) * \param exec_state execution state (JavaScript object) * \param event_data event specific data (JavaScript object) * \param data value passed by the user to AddDebugEventListener @@ -122,9 +122,6 @@ // Remove a JavaScript debug event listener. static void RemoveDebugEventListener(v8::Handle<v8::Function> that); - // Generate a stack dump. - static void StackDump(); - // Break execution of JavaScript. static void DebugBreak(); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
