| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 library dart.core_patch; | 5 library dart.core_patch; |
| 6 | 6 |
| 7 import 'dart:_patch' show | 7 import 'dart:_patch' show |
| 8 patch; | 8 patch; |
| 9 | 9 |
| 10 import 'dart:typed_data' show | 10 import 'dart:typed_data' show |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 part "../third_party/dart-sdk/runtime/lib/array.dart"; | 43 part "../third_party/dart-sdk/runtime/lib/array.dart"; |
| 44 part "../third_party/dart-sdk/runtime/lib/bigint.dart"; | 44 part "../third_party/dart-sdk/runtime/lib/bigint.dart"; |
| 45 part "../third_party/dart-sdk/runtime/lib/double.dart"; | 45 part "../third_party/dart-sdk/runtime/lib/double.dart"; |
| 46 part "../third_party/dart-sdk/runtime/lib/function.dart"; | 46 part "../third_party/dart-sdk/runtime/lib/function.dart"; |
| 47 part "../third_party/dart-sdk/runtime/lib/growable_array.dart"; | 47 part "../third_party/dart-sdk/runtime/lib/growable_array.dart"; |
| 48 part "../third_party/dart-sdk/runtime/lib/immutable_map.dart"; | 48 part "../third_party/dart-sdk/runtime/lib/immutable_map.dart"; |
| 49 part "../third_party/dart-sdk/runtime/lib/integers.dart"; | 49 part "../third_party/dart-sdk/runtime/lib/integers.dart"; |
| 50 part "../third_party/dart-sdk/runtime/lib/lib_prefix.dart"; | 50 part "../third_party/dart-sdk/runtime/lib/lib_prefix.dart"; |
| 51 part "../third_party/dart-sdk/runtime/lib/stacktrace.dart"; | 51 part "../third_party/dart-sdk/runtime/lib/stacktrace.dart"; |
| 52 part "../third_party/dart-sdk/runtime/lib/weak_property.dart"; | 52 part "../third_party/dart-sdk/runtime/lib/weak_property.dart"; |
| 53 part "rasta_errors.dart"; |
| OLD | NEW |