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

Unified Diff: frog/frogsh

Issue 8770022: Get rid of a debugging print :p. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: frogsh Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | frog/lib/string_implementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/frogsh
diff --git a/frog/frogsh b/frog/frogsh
index 4233746935527932e3fe8ac1ed9dd10873cb86fb..532821afc9f1eebfbc90c64af0a9f5e5a8e96eb8 100755
--- a/frog/frogsh
+++ b/frog/frogsh
@@ -2485,7 +2485,7 @@ StringImplementation.prototype._replaceFirst = function(from, to) {
return this.replace(from, to);
}
StringImplementation.prototype._replaceFirstRegExp = function(from, to) {
- console.log(require('util').inspect(from)); return this.replace(from.re, to);
+ return this.replace(from.re, to);
}
StringImplementation.prototype.replaceFirst = function(from, to) {
if ((typeof(from) == 'string')) return this._replaceFirst($assert_String(from), to);
« no previous file with comments | « no previous file | frog/lib/string_implementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698