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

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

Issue 17301008: Remove =List in JS, use JSExtendableArray instead. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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/html/dart2js/html_dart2js.dart
===================================================================
--- sdk/lib/html/dart2js/html_dart2js.dart (revision 24212)
+++ sdk/lib/html/dart2js/html_dart2js.dart (working copy)
@@ -16,7 +16,7 @@
import 'dart:web_gl' as gl;
import 'dart:web_sql';
import 'dart:_js_helper' show convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, JSName, Null, Returns;
-import 'dart:_interceptors' show Interceptor;
+import 'dart:_interceptors' show Interceptor, JSExtendableArray;
import 'dart:_isolate_helper' show IsolateNatives;
import 'dart:_foreign_helper' show JS;
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -11990,7 +11990,7 @@
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
- @Creates('ByteBuffer|Blob|Document|=Object|=List|String|num')
+ @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num')
final Object response;
/**
@@ -15129,7 +15129,7 @@
@DomName('MessageEvent.ports')
@DocsEditable
@Unstable
- @Creates('=List')
+ @Creates('JSExtendableArray')
final List<MessagePort> ports;
WindowBase get source => _convertNativeToDart_Window(this._get_source);

Powered by Google App Engine
This is Rietveld 408576698