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

Side by Side Diff: lib/core/core_patch.dart

Issue 1413863004: Rename the _fletch_system and service and dart: libraries (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Fixes after self-review Created 5 years, 1 month 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
« no previous file with comments | « lib/collection/collection_patch.dart ('k') | lib/ffi/ffi.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « lib/collection/collection_patch.dart ('k') | lib/ffi/ffi.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698