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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart

Issue 48483002: Remove deprecated parts of dart:async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. 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/barback/lib/src/asset_cascade.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart b/editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart
index a346f98d9a8b46ce421a06c102cb2ba2de7c2c37..18d591cc40462aa81c2bdc733b5bba24c7d658e7 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src-dart/pub_package_server.dart
@@ -57,8 +57,8 @@ void requestReceivedHandler(request) {
response.contentLength = data.length;
response.add(data);
response.close();
- }).catchError((e) {
- print(getAttachedStackTrace(e));
+ }).catchError((e, trace) {
+ print(trace);
response.statusCode = 404;
response.contentLength = 0;
response.close();
« no previous file with comments | « no previous file | pkg/barback/lib/src/asset_cascade.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698