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

Unified Diff: tools/coverage.dart

Issue 23451021: Update co19 test expectations to disable tests using String.concat. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove use of concat. Created 7 years, 3 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 | « tests/co19/co19-co19.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/coverage.dart
diff --git a/tools/coverage.dart b/tools/coverage.dart
index 34018c5482e4289546616507006cfd39b0ab80e0..15333a6c9d7c50879cdb02dad013b4adb4610bfa 100644
--- a/tools/coverage.dart
+++ b/tools/coverage.dart
@@ -354,7 +354,7 @@ class Debugger {
void getLibraries() {
queuedCommands.add(new GetLibrariesCmd(isolateId));
}
-
+
void enableDebugging(libraryId, enable) {
queuedCommands.add(new SetLibraryPropertiesCmd(isolateId, libraryId, enable));
}
@@ -441,7 +441,7 @@ class JsonBuffer {
if (buffer == null || buffer.length == 0) {
buffer = s;
} else {
- buffer = buffer.concat(s);
+ buffer = buffer + s;
}
}
@@ -471,7 +471,7 @@ class JsonBuffer {
}
if (i >= buffer.length) {
return false;
- } else {
+ } else {
return char != "{";
}
}
« no previous file with comments | « tests/co19/co19-co19.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698