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

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

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 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 | Annotate | Revision Log
OLDNEW
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("dart:core"); 5 #library("dart:core");
6 6
7 #import("dart:coreimpl");
8 #import("dart:collection"); 7 #import("dart:collection");
9 8
10 #source("bool.dart"); 9 #source("bool.dart");
11 #source("collection.dart"); 10 #source("collection.dart");
12 #source("comparable.dart"); 11 #source("comparable.dart");
13 #source("date.dart"); 12 #source("date.dart");
14 #source("double.dart"); 13 #source("double.dart");
15 #source("duration.dart"); 14 #source("duration.dart");
16 #source("errors.dart"); 15 #source("errors.dart");
17 #source("exceptions.dart"); 16 #source("exceptions.dart");
(...skipping 18 matching lines...) Expand all
36 #source("queue.dart"); 35 #source("queue.dart");
37 #source("regexp.dart"); 36 #source("regexp.dart");
38 #source("sequences.dart"); 37 #source("sequences.dart");
39 #source("set.dart"); 38 #source("set.dart");
40 #source("sort.dart"); 39 #source("sort.dart");
41 #source("stopwatch.dart"); 40 #source("stopwatch.dart");
42 #source("string.dart"); 41 #source("string.dart");
43 #source("string_buffer.dart"); 42 #source("string_buffer.dart");
44 #source("strings.dart"); 43 #source("strings.dart");
45 #source("type.dart"); 44 #source("type.dart");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698