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

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 14985010: Map lists back to typed arrays (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /// The Dart HTML library. 1 /// The Dart HTML library.
2 library dart.dom.html; 2 library dart.dom.html;
3 3
4 import 'dart:async'; 4 import 'dart:async';
5 import 'dart:collection'; 5 import 'dart:collection';
6 import 'dart:_collection-dev'; 6 import 'dart:_collection-dev';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:indexed_db'; 8 import 'dart:indexed_db';
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 import 'dart:json' as json; 10 import 'dart:json' as json;
(...skipping 12809 matching lines...) Expand 10 before | Expand all | Expand 10 after
12820 @DomName('MediaKeyEvent.defaultURL') 12820 @DomName('MediaKeyEvent.defaultURL')
12821 @DocsEditable 12821 @DocsEditable
12822 final String defaultUrl; 12822 final String defaultUrl;
12823 12823
12824 @DomName('MediaKeyEvent.errorCode') 12824 @DomName('MediaKeyEvent.errorCode')
12825 @DocsEditable 12825 @DocsEditable
12826 final MediaKeyError errorCode; 12826 final MediaKeyError errorCode;
12827 12827
12828 @DomName('MediaKeyEvent.initData') 12828 @DomName('MediaKeyEvent.initData')
12829 @DocsEditable 12829 @DocsEditable
12830 @Returns('Uint8List') 12830 final Uint8List initData;
12831 @Creates('Uint8List')
12832 final List<int> initData;
12833 12831
12834 @DomName('MediaKeyEvent.keySystem') 12832 @DomName('MediaKeyEvent.keySystem')
12835 @DocsEditable 12833 @DocsEditable
12836 final String keySystem; 12834 final String keySystem;
12837 12835
12838 @DomName('MediaKeyEvent.message') 12836 @DomName('MediaKeyEvent.message')
12839 @DocsEditable 12837 @DocsEditable
12840 @Returns('Uint8List') 12838 final Uint8List message;
12841 @Creates('Uint8List')
12842 final List<int> message;
12843 12839
12844 @DomName('MediaKeyEvent.sessionId') 12840 @DomName('MediaKeyEvent.sessionId')
12845 @DocsEditable 12841 @DocsEditable
12846 final String sessionId; 12842 final String sessionId;
12847 12843
12848 @DomName('MediaKeyEvent.systemCode') 12844 @DomName('MediaKeyEvent.systemCode')
12849 @DocsEditable 12845 @DocsEditable
12850 final int systemCode; 12846 final int systemCode;
12851 } 12847 }
12852 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 12724 matching lines...) Expand 10 before | Expand all | Expand 10 after
25577 _position = nextPosition; 25573 _position = nextPosition;
25578 return true; 25574 return true;
25579 } 25575 }
25580 _current = null; 25576 _current = null;
25581 _position = _array.length; 25577 _position = _array.length;
25582 return false; 25578 return false;
25583 } 25579 }
25584 25580
25585 T get current => _current; 25581 T get current => _current;
25586 } 25582 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698