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

Side by Side Diff: sdk/lib/_internal/lib/interceptors.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 _interceptors; 5 library _interceptors;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:_collection-dev' hide Symbol; 8 import 'dart:_internal' hide Symbol;
9 import "dart:_collection-dev" as _symbol_dev show Symbol; 9 import "dart:_internal" as _symbol_dev show Symbol;
10 import 'dart:_js_helper' show allMatchesInStringUnchecked, 10 import 'dart:_js_helper' show allMatchesInStringUnchecked,
11 Null, 11 Null,
12 JSSyntaxRegExp, 12 JSSyntaxRegExp,
13 Primitives, 13 Primitives,
14 checkInt, 14 checkInt,
15 checkNull, 15 checkNull,
16 checkNum, 16 checkNum,
17 checkString, 17 checkString,
18 defineProperty, 18 defineProperty,
19 getRuntimeType, 19 getRuntimeType,
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 } 374 }
375 375
376 376
377 /** 377 /**
378 * Interceptor for unclassified JavaScript objects, typically objects with a 378 * Interceptor for unclassified JavaScript objects, typically objects with a
379 * non-trivial prototype chain. 379 * non-trivial prototype chain.
380 */ 380 */
381 class UnknownJavaScriptObject extends JavaScriptObject { 381 class UnknownJavaScriptObject extends JavaScriptObject {
382 const UnknownJavaScriptObject(); 382 const UnknownJavaScriptObject();
383 } 383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698