Fixed some tabs left in d8.js
authorsgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 6 Jan 2011 13:27:10 +0000 (13:27 +0000)
committersgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 6 Jan 2011 13:27:10 +0000 (13:27 +0000)
TBR=mark.lam@palm.com
Review URL: http://codereview.chromium.org/6029011

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6202 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/d8.js

index 8b8f7b2913cb6dfb53dd471e7f1d58dad027cdec..b0edb706ad7c00051318ef70d57f61d8e2300e4e 100644 (file)
--- a/src/d8.js
+++ b/src/d8.js
@@ -1071,7 +1071,7 @@ DebugRequest.prototype.changeBreakpointCommandToJSONRequest_ =
         break;
       default:
         throw new Error('Invalid arguments.');  
-       }
+    }
   } else {
     throw new Error('Invalid arguments.');
   }
@@ -1094,15 +1094,15 @@ DebugRequest.prototype.infoCommandToJSONRequest_ = function(args) {
   if (args && (args == 'break' || args == 'br')) {
     // Build a evaluate request from the text command.
     request = this.createRequest('listbreakpoints');
-       last_cmd = 'info break';
+    last_cmd = 'info break';
   } else if (args && (args == 'locals' || args == 'lo')) {
     // Build a evaluate request from the text command.
-       request = this.createRequest('frame');
-       last_cmd = 'info locals';
+    request = this.createRequest('frame');
+    last_cmd = 'info locals';
   } else if (args && (args == 'args' || args == 'ar')) {
     // Build a evaluate request from the text command.
-       request = this.createRequest('frame');
-       last_cmd = 'info args';
+    request = this.createRequest('frame');
+    last_cmd = 'info args';
   } else {
     throw new Error('Invalid info arguments.');
   }