| OLD | NEW |
| 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 "builtin": const LibraryInfo( | |
| 26 "builtin/builtin_runtime.dart", | |
| 27 category: "Server", | |
| 28 documented: false, | |
| 29 platforms: VM_PLATFORM), | |
| 30 | |
| 31 "core": const LibraryInfo( | 25 "core": const LibraryInfo( |
| 32 "core/core.dart", | 26 "core/core.dart", |
| 33 dart2jsPath: "compiler/implementation/lib/core.dart"), | 27 dart2jsPath: "compiler/implementation/lib/core.dart"), |
| 34 | 28 |
| 35 "coreimpl": const LibraryInfo( | 29 "coreimpl": const LibraryInfo( |
| 36 "coreimpl/coreimpl.dart", | 30 "coreimpl/coreimpl.dart", |
| 37 implementation: true, | 31 implementation: true, |
| 38 dart2jsPath: "compiler/implementation/lib/coreimpl.dart", | 32 dart2jsPath: "compiler/implementation/lib/coreimpl.dart", |
| 39 dart2jsPatchPath: "compiler/implementation/lib/coreimpl_patch.dart"), | 33 dart2jsPatchPath: "compiler/implementation/lib/coreimpl_patch.dart"), |
| 40 | 34 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 this.category = "Shared", | 151 this.category = "Shared", |
| 158 this.dart2jsPath, | 152 this.dart2jsPath, |
| 159 this.dart2jsPatchPath, | 153 this.dart2jsPatchPath, |
| 160 this.implementation = false, | 154 this.implementation = false, |
| 161 this.documented = true, | 155 this.documented = true, |
| 162 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]); | 156 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]); |
| 163 | 157 |
| 164 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; | 158 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |
| 165 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; | 159 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |
| 166 } | 160 } |
| OLD | NEW |