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

Unified Diff: lib/html/src/native_DOMImplementation.dart

Issue 11235060: Get rid of Dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/html/src/native_DOMImplementation.dart
diff --git a/lib/html/src/native_DOMImplementation.dart b/lib/html/src/native_DOMImplementation.dart
index aab4e4405a1dce570d199f1674437988bd1cbc64..efe4007f3ae02df26aee0f44db1ffa56d06fdfab 100644
--- a/lib/html/src/native_DOMImplementation.dart
+++ b/lib/html/src/native_DOMImplementation.dart
@@ -109,7 +109,7 @@ class _DOMStringMapImpl extends NativeFieldWrapperClass1 implements Map<String,
get _printClosure => (s) {
try {
window.console.log(s);
- } on Dynamic catch(_) {
+ } catch(_) {
kasperl 2012/10/23 12:24:58 Space between catch and (.
Anton Muhin 2012/10/23 12:32:54 Done.
_Utils.print(s);
}
};

Powered by Google App Engine
This is Rietveld 408576698