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

Unified Diff: sdk/lib/_internal/pub/lib/src/dart.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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/uploader.dart ('k') | sdk/lib/_internal/pub/lib/src/package.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index b7765b81475c563adc9419c947e69ba4a8818c2a..f6d8b11074aa9f71f942e6434db7b0e698f7aa2c 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -127,15 +127,22 @@ class CrossIsolateException implements Exception {
/// Loads a [CrossIsolateException] from a serialized representation.
///
/// [error] should be the result of [CrossIsolateException.serialize].
- CrossIsolateException.deserialize(Object error)
- : type = error['type'],
- message = error['message'],
- stackTrace = error['stack'] == null ? null :
+ factory CrossIsolateException.deserialize(Map error) {
+ var type = error['type'];
+ var message = error['message'];
+ var stackTrace = error['stack'] == null ? null :
new Trace.parse(error['stack']);
+ return new CrossIsolateException._(type, message, stackTrace);
+ }
+
+ /// Loads a [CrossIsolateException] from a serialized representation.
+ ///
+ /// [error] should be the result of [CrossIsolateException.serialize].
+ CrossIsolateException._(this.type, this.message, this.stackTrace);
/// Serializes [error] to an object that can safely be passed across isolate
/// boundaries.
- static Object serialize(error, [StackTrace stack]) {
+ static Map serialize(error, [StackTrace stack]) {
if (stack == null) stack = getAttachedStackTrace(error);
return {
'type': error.runtimeType.toString(),
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/uploader.dart ('k') | sdk/lib/_internal/pub/lib/src/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698