Chromium Code Reviews| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 category: "Client", | 82 category: "Client", |
| 83 implementation: true, | 83 implementation: true, |
| 84 documented: false, | 84 documented: false, |
| 85 platforms: VM_PLATFORM), | 85 platforms: VM_PLATFORM), |
| 86 | 86 |
| 87 "scalarlist": const LibraryInfo( | 87 "scalarlist": const LibraryInfo( |
| 88 "scalarlist/scalarlist.dart", | 88 "scalarlist/scalarlist.dart", |
| 89 category: "Server", | 89 category: "Server", |
| 90 dart2jsPatchPath: "_internal/compiler/implementation/lib/scalarlist_patch. dart"), | 90 dart2jsPatchPath: "_internal/compiler/implementation/lib/scalarlist_patch. dart"), |
| 91 | 91 |
| 92 "typeddata": const LibraryInfo( | |
| 93 "typeddata/typeddata.dart", | |
| 94 category: "Server", | |
|
Ivan Posva
2013/03/08 09:41:52
I would believe that dart:typeddata should be supp
sra1
2013/03/08 18:52:24
Yes.
siva
2013/03/08 18:57:40
Changed it to "Common"
On 2013/03/08 09:41:52, Iv
| |
| 95 dart2jsPatchPath: "_internal/compiler/implementation/lib/typeddata_patch.d art"), | |
| 96 | |
| 92 "svg": const LibraryInfo( | 97 "svg": const LibraryInfo( |
| 93 "svg/dartium/svg_dartium.dart", | 98 "svg/dartium/svg_dartium.dart", |
| 94 category: "Client", | 99 category: "Client", |
| 95 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 100 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| 96 | 101 |
| 97 "uri": const LibraryInfo( | 102 "uri": const LibraryInfo( |
| 98 "uri/uri.dart"), | 103 "uri/uri.dart"), |
| 99 | 104 |
| 100 "utf": const LibraryInfo( | 105 "utf": const LibraryInfo( |
| 101 "utf/utf.dart"), | 106 "utf/utf.dart"), |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 194 this.category: "Shared", | 199 this.category: "Shared", |
| 195 this.dart2jsPath, | 200 this.dart2jsPath, |
| 196 this.dart2jsPatchPath, | 201 this.dart2jsPatchPath, |
| 197 this.implementation: false, | 202 this.implementation: false, |
| 198 this.documented: true, | 203 this.documented: true, |
| 199 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); | 204 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); |
| 200 | 205 |
| 201 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; | 206 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |
| 202 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; | 207 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |
| 203 } | 208 } |
| OLD | NEW |