| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "uri/uri.dart"), | 97 "uri/uri.dart"), |
| 98 | 98 |
| 99 "utf": const LibraryInfo( | 99 "utf": const LibraryInfo( |
| 100 "utf/utf.dart"), | 100 "utf/utf.dart"), |
| 101 | 101 |
| 102 "web_audio": const LibraryInfo( | 102 "web_audio": const LibraryInfo( |
| 103 "web_audio/dartium/web_audio_dartium.dart", | 103 "web_audio/dartium/web_audio_dartium.dart", |
| 104 category: "Client", | 104 category: "Client", |
| 105 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"), | 105 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"), |
| 106 | 106 |
| 107 "web_sql": const LibraryInfo( |
| 108 "web_sql/dartium/web_sql_dartium.dart", |
| 109 category: "Client", |
| 110 dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"), |
| 111 |
| 107 "_collection-dev": const LibraryInfo( | 112 "_collection-dev": const LibraryInfo( |
| 108 "_collection_dev/collection_dev.dart", | 113 "_collection_dev/collection_dev.dart", |
| 109 category: "Internal", | 114 category: "Internal", |
| 110 documented: false), | 115 documented: false), |
| 111 | 116 |
| 112 "_js_helper": const LibraryInfo( | 117 "_js_helper": const LibraryInfo( |
| 113 "_internal/compiler/implementation/lib/js_helper.dart", | 118 "_internal/compiler/implementation/lib/js_helper.dart", |
| 114 category: "Internal", | 119 category: "Internal", |
| 115 documented: false, | 120 documented: false, |
| 116 platforms: DART2JS_PLATFORM), | 121 platforms: DART2JS_PLATFORM), |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 this.category: "Shared", | 193 this.category: "Shared", |
| 189 this.dart2jsPath, | 194 this.dart2jsPath, |
| 190 this.dart2jsPatchPath, | 195 this.dart2jsPatchPath, |
| 191 this.implementation: false, | 196 this.implementation: false, |
| 192 this.documented: true, | 197 this.documented: true, |
| 193 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); | 198 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); |
| 194 | 199 |
| 195 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; | 200 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |
| 196 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; | 201 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |
| 197 } | 202 } |
| OLD | NEW |