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

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

Issue 10911179: Revert "Remove dart2js specific core.dart and coreimpl.dart files." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « no previous file | lib/compiler/implementation/lib/core.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;
11 11
12 /** 12 /**
13 * A bit flag used by [LibraryInfo] indicating that a library is used by the VM 13 * A bit flag used by [LibraryInfo] indicating that a library is used by the VM
14 */ 14 */
15 const int VM_PLATFORM = 2; 15 const int VM_PLATFORM = 2;
16 16
17 /** 17 /**
18 * Mapping of "dart:" library name (e.g. "core") to information about that libra ry. 18 * Mapping of "dart:" library name (e.g. "core") to information about that libra ry.
19 * This information is structured such that Dart Editor can parse this file 19 * This information is structured such that Dart Editor can parse this file
20 * and extract the necessary information without executing it 20 * and extract the necessary information without executing it
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 "core": const LibraryInfo( 25 "core": const LibraryInfo(
26 "core/core.dart", 26 "core/core.dart",
27 dart2jsPath: "compiler/implementation/lib/core.dart",
27 dart2jsPatchPath: "compiler/implementation/lib/core_patch.dart"), 28 dart2jsPatchPath: "compiler/implementation/lib/core_patch.dart"),
28 29
29 "coreimpl": const LibraryInfo( 30 "coreimpl": const LibraryInfo(
30 "coreimpl/coreimpl.dart", 31 "coreimpl/coreimpl.dart",
31 implementation: true, 32 implementation: true,
33 dart2jsPath: "compiler/implementation/lib/coreimpl.dart",
32 dart2jsPatchPath: "compiler/implementation/lib/coreimpl_patch.dart"), 34 dart2jsPatchPath: "compiler/implementation/lib/coreimpl_patch.dart"),
33 35
34 "crypto": const LibraryInfo( 36 "crypto": const LibraryInfo(
35 "crypto/crypto.dart"), 37 "crypto/crypto.dart"),
36 38
37 "html": const LibraryInfo( 39 "html": const LibraryInfo(
38 "html/dartium/html_dartium.dart", 40 "html/dartium/html_dartium.dart",
39 category: "Client", 41 category: "Client",
40 dart2jsPath: "html/dart2js/html_dart2js.dart"), 42 dart2jsPath: "html/dart2js/html_dart2js.dart"),
41 43
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 this.category = "Shared", 142 this.category = "Shared",
141 this.dart2jsPath, 143 this.dart2jsPath,
142 this.dart2jsPatchPath, 144 this.dart2jsPatchPath,
143 this.implementation = false, 145 this.implementation = false,
144 this.documented = true, 146 this.documented = true,
145 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]); 147 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]);
146 148
147 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; 149 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0;
148 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; 150 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0;
149 } 151 }
OLDNEW
« no previous file with comments | « no previous file | lib/compiler/implementation/lib/core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698