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

Side by Side Diff: sdk/lib/_internal/libraries.dart

Issue 12026019: Revert "Add dart:collection_dev library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months 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
« no previous file with comments | « runtime/vm/vm.gypi ('k') | sdk/lib/collection_dev/collection_dev.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) 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 libraries; 5 library libraries;
6 6
7 /** 7 /**
8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js 8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js
9 */ 9 */
10 const int DART2JS_PLATFORM = 1; 10 const int DART2JS_PLATFORM = 1;
(...skipping 10 matching lines...) Expand all
21 * while other tools can access via execution. 21 * while other tools can access via execution.
22 */ 22 */
23 const Map<String, LibraryInfo> LIBRARIES = const <LibraryInfo> { 23 const Map<String, LibraryInfo> LIBRARIES = const <LibraryInfo> {
24 24
25 "async": const LibraryInfo( 25 "async": const LibraryInfo(
26 "async/async.dart", 26 "async/async.dart",
27 dart2jsPatchPath: "_internal/compiler/implementation/lib/async_patch.dart" ), 27 dart2jsPatchPath: "_internal/compiler/implementation/lib/async_patch.dart" ),
28 28
29 "collection": const LibraryInfo("collection/collection.dart"), 29 "collection": const LibraryInfo("collection/collection.dart"),
30 30
31 "collection-dev": const LibraryInfo("collection_dev/collection_dev.dart"),
32
33 "core": const LibraryInfo( 31 "core": const LibraryInfo(
34 "core/core.dart", 32 "core/core.dart",
35 dart2jsPatchPath: "_internal/compiler/implementation/lib/core_patch.dart") , 33 dart2jsPatchPath: "_internal/compiler/implementation/lib/core_patch.dart") ,
36 34
37 "crypto": const LibraryInfo( 35 "crypto": const LibraryInfo(
38 "crypto/crypto.dart"), 36 "crypto/crypto.dart"),
39 37
40 "html": const LibraryInfo( 38 "html": const LibraryInfo(
41 "html/dartium/html_dartium.dart", 39 "html/dartium/html_dartium.dart",
42 category: "Client", 40 category: "Client",
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 this.category: "Shared", 179 this.category: "Shared",
182 this.dart2jsPath, 180 this.dart2jsPath,
183 this.dart2jsPatchPath, 181 this.dart2jsPatchPath,
184 this.implementation: false, 182 this.implementation: false,
185 this.documented: true, 183 this.documented: true,
186 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); 184 this.platforms: DART2JS_PLATFORM | VM_PLATFORM});
187 185
188 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; 186 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0;
189 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; 187 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0;
190 } 188 }
OLDNEW
« no previous file with comments | « runtime/vm/vm.gypi ('k') | sdk/lib/collection_dev/collection_dev.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698