1919
2020namespace llnode {
2121
22+ using lldb::eReturnStatusFailed;
23+ using lldb::eReturnStatusSuccessFinishResult;
2224using lldb::SBCommandInterpreter;
2325using lldb::SBCommandReturnObject;
2426using lldb::SBDebugger;
@@ -30,8 +32,6 @@ using lldb::SBSymbol;
3032using lldb::SBTarget;
3133using lldb::SBThread;
3234using lldb::SBValue;
33- using lldb::eReturnStatusFailed;
34- using lldb::eReturnStatusSuccessFinishResult;
3535
3636
3737bool BacktraceCmd::DoExecute (SBDebugger d, char ** cmd,
@@ -433,17 +433,15 @@ bool PluginInitialize(SBDebugger d) {
433433 " JavaScript frame.\n\n "
434434 " Syntax: v8 source list [flags]\n\n "
435435 " Flags:\n "
436- " * -l <line> - Print source code below line <line>.\n "
437- );
436+ " * -l <line> - Print source code below line <line>.\n " );
438437 interpreter.AddCommand (" jssource" , new llnode::ListCmd (&llv8),
439438 " Alias for `v8 source list`" );
440439
441440 v8.AddCommand (" findjsobjects" , new llnode::FindObjectsCmd (&llscan),
442441 " List all object types and instance counts grouped by type "
443442 " name and sorted by instance count. Use -d or --detailed to "
444443 " get an output grouped by type name, properties, and array "
445- " length, as well as more information regarding each type.\n "
446- );
444+ " length, as well as more information regarding each type.\n " );
447445
448446 SBCommand settingsCmd =
449447 v8.AddMultiwordCommand (" settings" , " Interpreter settings" );
0 commit comments