| 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 'shared/embedded_names.dart' show | 7 import 'dart:_js_embedded_names' show |
| 8 DISPATCH_PROPERTY_NAME; | 8 DISPATCH_PROPERTY_NAME; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| 11 import 'dart:_internal' hide Symbol; | 11 import 'dart:_internal' hide Symbol; |
| 12 import "dart:_internal" as _symbol_dev show Symbol; | 12 import "dart:_internal" as _symbol_dev show Symbol; |
| 13 import 'dart:_js_helper' show allMatchesInStringUnchecked, | 13 import 'dart:_js_helper' show allMatchesInStringUnchecked, |
| 14 Null, | 14 Null, |
| 15 JSSyntaxRegExp, | 15 JSSyntaxRegExp, |
| 16 Primitives, | 16 Primitives, |
| 17 checkInt, | 17 checkInt, |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 * Interceptor for unclassified JavaScript objects, typically objects with a | 403 * Interceptor for unclassified JavaScript objects, typically objects with a |
| 404 * non-trivial prototype chain. | 404 * non-trivial prototype chain. |
| 405 * | 405 * |
| 406 * This class also serves as a fallback for unknown JavaScript exceptions. | 406 * This class also serves as a fallback for unknown JavaScript exceptions. |
| 407 */ | 407 */ |
| 408 class UnknownJavaScriptObject extends JavaScriptObject { | 408 class UnknownJavaScriptObject extends JavaScriptObject { |
| 409 const UnknownJavaScriptObject(); | 409 const UnknownJavaScriptObject(); |
| 410 | 410 |
| 411 String toString() => JS('String', 'String(#)', this); | 411 String toString() => JS('String', 'String(#)', this); |
| 412 } | 412 } |
| OLD | NEW |