Revision: 6202
Author: [email protected]
Date: Thu Jan  6 05:27:10 2011
Log: Fixed some tabs left in d8.js

[email protected]
Review URL: http://codereview.chromium.org/6029011
http://code.google.com/p/v8/source/detail?r=6202

Modified:
 /branches/bleeding_edge/src/d8.js

=======================================
--- /branches/bleeding_edge/src/d8.js   Thu Jan  6 05:14:32 2011
+++ /branches/bleeding_edge/src/d8.js   Thu Jan  6 05:27:10 2011
@@ -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