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

Side by Side Diff: sdk/lib/_internal/lib/js_mirrors.dart

Issue 133893007: Rename internal library dart:_collection-dev to dart:_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo in dart2js Symbol lookup. Created 6 years, 11 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
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_mirrors; 5 library dart._js_mirrors;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'dart:collection' show 9 import 'dart:collection' show
10 UnmodifiableListView; 10 UnmodifiableListView;
11 11
12 import 'dart:mirrors'; 12 import 'dart:mirrors';
13 13
14 import 'dart:_foreign_helper' show 14 import 'dart:_foreign_helper' show
15 JS, 15 JS,
16 JS_CURRENT_ISOLATE, 16 JS_CURRENT_ISOLATE,
17 JS_CURRENT_ISOLATE_CONTEXT, 17 JS_CURRENT_ISOLATE_CONTEXT,
18 JS_GET_NAME; 18 JS_GET_NAME;
19 19
20 import 'dart:_collection-dev' as _symbol_dev; 20 import 'dart:_internal' as _symbol_dev;
21 21
22 import 'dart:_js_helper' show 22 import 'dart:_js_helper' show
23 BoundClosure, 23 BoundClosure,
24 Closure, 24 Closure,
25 JSInvocationMirror, 25 JSInvocationMirror,
26 JsCache, 26 JsCache,
27 Null, 27 Null,
28 Primitives, 28 Primitives,
29 ReflectionInfo, 29 ReflectionInfo,
30 RuntimeError, 30 RuntimeError,
(...skipping 2360 matching lines...) Expand 10 before | Expand all | Expand 10 after
2391 void operator []=(K key, V value) => _throw(); 2391 void operator []=(K key, V value) => _throw();
2392 2392
2393 V putIfAbsent(K key, V ifAbsent()) { _throw(); } 2393 V putIfAbsent(K key, V ifAbsent()) { _throw(); }
2394 2394
2395 void addAll(Map<K, V> other) => _throw(); 2395 void addAll(Map<K, V> other) => _throw();
2396 2396
2397 V remove(K key) { _throw(); } 2397 V remove(K key) { _throw(); }
2398 2398
2399 void clear() => _throw(); 2399 void clear() => _throw();
2400 } 2400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698