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

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

Issue 1408253006: Introduce "platform configurations" to replace categories and libraries.dart. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 /// Built-in types, collections, and other core functionality for embedded
6 /// Fletch programs.
7 library dart.core;
8
9 import "dart:collection";
10 import "dart:_internal" hide Symbol;
11 import "dart:_internal" as internal show Symbol;
12 import "dart:_convert" show UTF8, LATIN1, Encoding;
13 import "dart:math" show Random; // Used by List.shuffle.
14 import "dart:_async" show Stream, Future; // Used by Resource.
15
16 part "annotations.dart";
17 part "bool.dart";
18 part "comparable.dart";
19 part "date_time.dart";
20 part "double.dart";
21 part "duration.dart";
22 part "errors.dart";
23 part "exceptions.dart";
24 part "expando.dart";
25 part "function.dart";
26 part "identical.dart";
27 part "int.dart";
28 part "invocation.dart";
29 part "iterable.dart";
30 part "iterator.dart";
31 part "list.dart";
32 part "map.dart";
33 part "null.dart";
34 part "num.dart";
35 part "object.dart";
36 part "pattern.dart";
37 part "print.dart";
38 part "regexp.dart";
39 part "resource.dart";
40 part "set.dart";
41 part "sink.dart";
42 part "stacktrace.dart";
43 part "stopwatch.dart";
44 part "string.dart";
45 part "string_buffer.dart";
46 part "string_sink.dart";
47 part "symbol.dart";
48 part "type.dart";
49 part "uri.dart";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698