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

Unified Diff: pkg/barback/test/utils.dart

Issue 29463002: fix for Set.add tweak in r28863 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixes for bool return value Created 7 years, 2 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 | pkg/unmodifiable_collection/lib/unmodifiable_collection.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/test/utils.dart
diff --git a/pkg/barback/test/utils.dart b/pkg/barback/test/utils.dart
index 4e970d84eb719d2df6f2978f9693ff5a9cebbba5..6d88ee57a666f7c9e8c5ec10790150d49ed7912d 100644
--- a/pkg/barback/test/utils.dart
+++ b/pkg/barback/test/utils.dart
@@ -469,7 +469,9 @@ class MockProvider implements PackageProvider {
_assets[id.package][id].contents = contents;
}
- void _setAssetError(String name) => _errors.add(new AssetId.parse(name));
+ void _setAssetError(String name) {
+ _errors.add(new AssetId.parse(name));
+ }
List<AssetId> listAssets(String package, {String within}) {
if (within != null) {
« no previous file with comments | « no previous file | pkg/unmodifiable_collection/lib/unmodifiable_collection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698