| 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; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "mirrors/mirrors.dart", | 76 "mirrors/mirrors.dart", |
| 77 dart2jsPatchPath: "_internal/lib/mirrors_patch.dart"), | 77 dart2jsPatchPath: "_internal/lib/mirrors_patch.dart"), |
| 78 | 78 |
| 79 "nativewrappers": const LibraryInfo( | 79 "nativewrappers": const LibraryInfo( |
| 80 "html/dartium/nativewrappers.dart", | 80 "html/dartium/nativewrappers.dart", |
| 81 category: "Client", | 81 category: "Client", |
| 82 implementation: true, | 82 implementation: true, |
| 83 documented: false, | 83 documented: false, |
| 84 platforms: VM_PLATFORM), | 84 platforms: VM_PLATFORM), |
| 85 | 85 |
| 86 "mdv_observe_impl": const LibraryInfo( | |
| 87 "mdv_observe_impl/mdv_observe_impl.dart", | |
| 88 category: "Client", | |
| 89 documented: false, | |
| 90 implementation: true), | |
| 91 | |
| 92 "typed_data": const LibraryInfo( | 86 "typed_data": const LibraryInfo( |
| 93 "typed_data/typed_data.dart", | 87 "typed_data/typed_data.dart", |
| 94 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), | 88 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), |
| 95 | 89 |
| 96 "svg": const LibraryInfo( | 90 "svg": const LibraryInfo( |
| 97 "svg/dartium/svg_dartium.dart", | 91 "svg/dartium/svg_dartium.dart", |
| 98 category: "Client", | 92 category: "Client", |
| 99 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 93 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| 100 | 94 |
| 101 "utf": const LibraryInfo( | 95 "utf": const LibraryInfo( |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 this.category: "Shared", | 209 this.category: "Shared", |
| 216 this.dart2jsPath, | 210 this.dart2jsPath, |
| 217 this.dart2jsPatchPath, | 211 this.dart2jsPatchPath, |
| 218 this.implementation: false, | 212 this.implementation: false, |
| 219 this.documented: true, | 213 this.documented: true, |
| 220 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); | 214 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); |
| 221 | 215 |
| 222 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; | 216 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |
| 223 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; | 217 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |
| 224 } | 218 } |
| OLD | NEW |