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

Side by Side Diff: pkg/dev_compiler/tool/input_sdk/private/js_helper.dart

Issue 2698353003: unfork DDC's copy of most SDK libraries (Closed)
Patch Set: revert core_patch Created 3 years, 9 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dart._js_helper; 5 library dart._js_helper;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'dart:_foreign_helper' show 9 import 'dart:_foreign_helper' show
10 JS, 10 JS,
11 JS_STRING_CONCAT; 11 JS_STRING_CONCAT;
12 12
13 import 'dart:_interceptors'; 13 import 'dart:_interceptors';
14 import 'dart:_internal' show 14 import 'dart:_internal' show
15 EfficientLength, 15 EfficientLengthIterable,
16 MappedIterable, 16 MappedIterable,
17 IterableElementError; 17 IterableElementError;
18 18
19 import 'dart:_native_typed_data'; 19 import 'dart:_native_typed_data';
20 20
21 part 'annotations.dart'; 21 part 'annotations.dart';
22 part 'linked_hash_map.dart'; 22 part 'linked_hash_map.dart';
23 part 'native_helper.dart'; 23 part 'native_helper.dart';
24 part 'regexp_helper.dart'; 24 part 'regexp_helper.dart';
25 part 'string_helper.dart'; 25 part 'string_helper.dart';
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 // we have no way of telling the compiler yet, so it will generate an extra 905 // we have no way of telling the compiler yet, so it will generate an extra
906 // layer of indirection that wraps the SyncIterator. 906 // layer of indirection that wraps the SyncIterator.
907 _jsIterator() => JS('', '#(...#)', _generator, _args); 907 _jsIterator() => JS('', '#(...#)', _generator, _args);
908 908
909 Iterator<E> get iterator => new SyncIterator<E>(_jsIterator()); 909 Iterator<E> get iterator => new SyncIterator<E>(_jsIterator());
910 } 910 }
911 911
912 class BooleanConversionAssertionError extends AssertionError { 912 class BooleanConversionAssertionError extends AssertionError {
913 toString() => 'Failed assertion: boolean expression must not be null'; 913 toString() => 'Failed assertion: boolean expression must not be null';
914 } 914 }
OLDNEW
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/private/js_array.dart ('k') | pkg/dev_compiler/tool/input_sdk/private/js_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698