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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart

Issue 23702061: Fix warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. 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
Index: sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart b/sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart
index 2f8c6653c14b8a09af17ff26b96ab7589bb4fdc1..557dbbaf2e1fab7d39833f3d7de62d5f107e7b13 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart
@@ -9,11 +9,12 @@ import 'dart:convert';
import 'dart:isolate';
import 'package:barback/barback.dart';
-import 'package:stack_trace/stack_trace.dart';
+import '../barback.dart';
import '../dart.dart' as dart;
import '../log.dart' as log;
import '../utils.dart';
+import 'server.dart';
/// A Dart script to run in an isolate.
///
@@ -306,7 +307,7 @@ Future<Set<Transformer>> loadTransformers(BarbackServer server,
return transformers;
});
}).catchError((error) {
- if (error is! CrossIsolateException) throw error;
+ if (error is! dart.CrossIsolateException) throw error;
if (error.type != 'IsolateSpawnException') throw error;
// TODO(nweiz): don't parse this as a string once issues 12617 and 12689 are
// fixed.
@@ -322,7 +323,7 @@ Future<Set<Transformer>> loadTransformers(BarbackServer server,
}
/// A wrapper for a transformer that's in a different isolate.
-class _ForeignTransformer implements Transformer {
+class _ForeignTransformer extends Transformer {
/// The port with which we communicate with the child isolate.
///
/// This port and all messages sent across it are specific to this
@@ -407,13 +408,13 @@ Map _serializeId(AssetId id) => {'package': id.package, 'path': id.path};
/// Sends the result of [future] through [port].
///
/// This should be received on the other end using [_receiveFuture]. It
-/// re-raises any exceptions on the other side as [CrossIsolateException]s.
+/// re-raises any exceptions on the other side as [dart.CrossIsolateException]s.
void _sendFuture(SendPort port, Future future) {
future.then((result) {
port.send({'success': result});
}).catchError((error) {
// TODO(nweiz): at least MissingInputException should be preserved here.
- port.send({'error': CrossIsolateException.serialize(error)});
+ port.send({'error': dart.CrossIsolateException.serialize(error)});
});
}

Powered by Google App Engine
This is Rietveld 408576698