Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(876)

Unified Diff: src/d8.js

Issue 6029011: Fixed some tabs left in d8.js (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.');
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698