| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |