Reviewers: marklam,

Description:
Fixed some tabs left in d8.js

[email protected]

Please review this at http://codereview.chromium.org/6029011/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/d8.js


Index: src/d8.js
===================================================================
--- src/d8.js   (revision 6200)
+++ src/d8.js   (working copy)
@@ -1071,7 +1071,7 @@
         break;
       default:
         throw new Error('Invalid arguments.');
-       }
+    }
   } else {
     throw new Error('Invalid arguments.');
   }
@@ -1094,15 +1094,15 @@
   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.');
   }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to