Removed tabs from d8.js.
authorsgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 18 Dec 2008 10:38:09 +0000 (10:38 +0000)
committersgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 18 Dec 2008 10:38:09 +0000 (10:38 +0000)
TBR=ager
Review URL: http://codereview.chromium.org/14835

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

src/d8.js

index 26435ba..51010a4 100644 (file)
--- a/src/d8.js
+++ b/src/d8.js
@@ -179,9 +179,9 @@ function SourceUnderline(source_text, position) {
     return;
   }
 
-  // Create an underline with a caret pointing to the source position. If the          
-  // source contains a tab character the underline will have a tab character in                
-  // the same place otherwise the underline will have a space character.               
+  // Create an underline with a caret pointing to the source position. If the
+  // source contains a tab character the underline will have a tab character in
+  // the same place otherwise the underline will have a space character.
   var underline = '';
   for (var i = 0; i < position; i++) {
     if (source_text[i] == '\t') {
@@ -197,7 +197,7 @@ function SourceUnderline(source_text, position) {
 };
 
 
-function FrameSourceUnderline(frame) {         
+function FrameSourceUnderline(frame) {
   var location = frame.sourceLocation();
   if (location) {
     return SourceUnderline(location.sourceText(),