| OLD | NEW |
| 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Fletch 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:_fletch_system' as fletch; | 7 import 'dart:fletch._system' as fletch; |
| 8 | 8 |
| 9 part 'bigint.dart'; | 9 part 'bigint.dart'; |
| 10 part 'case.dart'; | 10 part 'case.dart'; |
| 11 part 'double.dart'; | 11 part 'double.dart'; |
| 12 part 'int.dart'; | 12 part 'int.dart'; |
| 13 part 'regexp.dart'; | 13 part 'regexp.dart'; |
| 14 part 'string.dart'; | 14 part 'string.dart'; |
| 15 | 15 |
| 16 const patch = "patch"; | 16 const patch = "patch"; |
| 17 | 17 |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 @patch static Uri get base { | 657 @patch static Uri get base { |
| 658 return new Uri.file(_base()); | 658 return new Uri.file(_base()); |
| 659 } | 659 } |
| 660 | 660 |
| 661 @patch static bool get _isWindows => false; | 661 @patch static bool get _isWindows => false; |
| 662 | 662 |
| 663 @fletch.native static String _base() { | 663 @fletch.native static String _base() { |
| 664 throw new RangeError("The Uri.base path is too large"); | 664 throw new RangeError("The Uri.base path is too large"); |
| 665 } | 665 } |
| 666 } | 666 } |
| OLD | NEW |