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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 1346203002: Fixed another dart2js code emitting error and enabled tests that now work (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Merged Created 5 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:
Download patch
« no previous file with comments | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 6b7dbaf82fc6359add78f797f0949dd60253233d..b3f6b04bd6945102febabd9764ede8d526a41aa1 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -12708,8 +12708,7 @@ class Element extends Node implements GlobalEventHandlers, ParentNode, ChildNode
}
var convertedFrames = frames;
if (convertedFrames is Iterable) {
- convertedFrames = convertDartToNative_List(
- frames.map(convertDartToNative_Dictionary).toList());
+ convertedFrames = frames.map(convertDartToNative_Dictionary).toList();
}
var convertedTiming = timing;
if (convertedTiming is Map) {
« no previous file with comments | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698