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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 maturity: Maturity.STABLE, | 54 maturity: Maturity.STABLE, |
55 dart2jsPatchPath: "_internal/js_runtime/lib/convert_patch.dart"), | 55 dart2jsPatchPath: "_internal/js_runtime/lib/convert_patch.dart"), |
56 "core": const LibraryInfo("core/core.dart", | 56 "core": const LibraryInfo("core/core.dart", |
57 categories: "Client,Server,Embedded", | 57 categories: "Client,Server,Embedded", |
58 maturity: Maturity.STABLE, | 58 maturity: Maturity.STABLE, |
59 dart2jsPatchPath: "_internal/js_runtime/lib/core_patch.dart"), | 59 dart2jsPatchPath: "_internal/js_runtime/lib/core_patch.dart"), |
60 "developer": const LibraryInfo("developer/developer.dart", | 60 "developer": const LibraryInfo("developer/developer.dart", |
61 categories: "Client,Server,Embedded", | 61 categories: "Client,Server,Embedded", |
62 maturity: Maturity.UNSTABLE, | 62 maturity: Maturity.UNSTABLE, |
63 dart2jsPatchPath: "_internal/js_runtime/lib/developer_patch.dart"), | 63 dart2jsPatchPath: "_internal/js_runtime/lib/developer_patch.dart"), |
64 "html": const LibraryInfo("html/dartium/html_dartium.dart", | 64 "html": const LibraryInfo("html/dart2js/html_dart2js.dart", |
65 categories: "Client", | 65 categories: "Client", |
66 maturity: Maturity.WEB_STABLE, | 66 maturity: Maturity.WEB_STABLE, |
67 dart2jsPath: "html/dart2js/html_dart2js.dart"), | 67 platforms: DART2JS_PLATFORM), |
68 "html_common": const LibraryInfo("html/html_common/html_common.dart", | 68 "html_common": const LibraryInfo("html/html_common/html_common.dart", |
69 categories: "Client", | 69 categories: "Client", |
70 maturity: Maturity.WEB_STABLE, | 70 maturity: Maturity.WEB_STABLE, |
71 dart2jsPath: "html/html_common/html_common_dart2js.dart", | 71 dart2jsPath: "html/html_common/html_common_dart2js.dart", |
72 documented: false, | 72 documented: false, |
73 implementation: true), | 73 implementation: true), |
74 "indexed_db": const LibraryInfo("indexed_db/dartium/indexed_db_dartium.dart", | 74 "indexed_db": const LibraryInfo("indexed_db/dart2js/indexed_db_dart2js.dart", |
75 categories: "Client", | 75 categories: "Client", |
76 maturity: Maturity.WEB_STABLE, | 76 maturity: Maturity.WEB_STABLE, |
77 dart2jsPath: "indexed_db/dart2js/indexed_db_dart2js.dart"), | 77 platforms: DART2JS_PLATFORM), |
78 "io": const LibraryInfo("io/io.dart", | 78 "io": const LibraryInfo("io/io.dart", |
79 categories: "Server", | 79 categories: "Server", |
80 dart2jsPatchPath: "_internal/js_runtime/lib/io_patch.dart"), | 80 dart2jsPatchPath: "_internal/js_runtime/lib/io_patch.dart"), |
81 "isolate": const LibraryInfo("isolate/isolate.dart", | 81 "isolate": const LibraryInfo("isolate/isolate.dart", |
82 categories: "Client,Server", | 82 categories: "Client,Server", |
83 maturity: Maturity.STABLE, | 83 maturity: Maturity.STABLE, |
84 dart2jsPatchPath: "_internal/js_runtime/lib/isolate_patch.dart"), | 84 dart2jsPatchPath: "_internal/js_runtime/lib/isolate_patch.dart"), |
85 "js": const LibraryInfo("js/dartium/js_dartium.dart", | 85 "js": const LibraryInfo("js/dart2js/js_dart2js.dart", |
86 categories: "Client", | 86 categories: "Client", |
87 maturity: Maturity.STABLE, | 87 maturity: Maturity.STABLE, |
88 dart2jsPath: "js/dart2js/js_dart2js.dart"), | 88 platforms: DART2JS_PLATFORM), |
89 "js_util": const LibraryInfo("js_util/dartium/js_util_dartium.dart", | 89 "js_util": const LibraryInfo("js_util/dart2js/js_util_dart2js.dart", |
90 categories: "Client", | 90 categories: "Client", |
91 maturity: Maturity.STABLE, | 91 maturity: Maturity.STABLE, |
92 dart2jsPath: "js_util/dart2js/js_util_dart2js.dart"), | 92 platforms: DART2JS_PLATFORM), |
93 "math": const LibraryInfo("math/math.dart", | 93 "math": const LibraryInfo("math/math.dart", |
94 categories: "Client,Server,Embedded", | 94 categories: "Client,Server,Embedded", |
95 maturity: Maturity.STABLE, | 95 maturity: Maturity.STABLE, |
96 dart2jsPatchPath: "_internal/js_runtime/lib/math_patch.dart"), | 96 dart2jsPatchPath: "_internal/js_runtime/lib/math_patch.dart"), |
97 "mirrors": const LibraryInfo("mirrors/mirrors.dart", | 97 "mirrors": const LibraryInfo("mirrors/mirrors.dart", |
98 categories: "Client,Server", | 98 categories: "Client,Server", |
99 maturity: Maturity.UNSTABLE, | 99 maturity: Maturity.UNSTABLE, |
100 dart2jsPatchPath: "_internal/js_runtime/lib/mirrors_patch.dart"), | 100 dart2jsPatchPath: "_internal/js_runtime/lib/mirrors_patch.dart"), |
101 "nativewrappers": const LibraryInfo("html/dartium/nativewrappers.dart", | 101 "nativewrappers": const LibraryInfo("html/dartium/nativewrappers.dart", |
102 categories: "Client", | 102 categories: "Client", |
103 implementation: true, | 103 implementation: true, |
104 documented: false, | 104 documented: false, |
105 dart2jsPath: "html/dart2js/nativewrappers.dart"), | 105 platforms: DART2JS_PLATFORM), |
106 "typed_data": const LibraryInfo("typed_data/typed_data.dart", | 106 "typed_data": const LibraryInfo("typed_data/typed_data.dart", |
107 categories: "Client,Server,Embedded", | 107 categories: "Client,Server,Embedded", |
108 maturity: Maturity.STABLE, | 108 maturity: Maturity.STABLE, |
109 dart2jsPatchPath: "_internal/js_runtime/lib/typed_data_patch.dart"), | 109 dart2jsPatchPath: "_internal/js_runtime/lib/typed_data_patch.dart"), |
110 "_native_typed_data": const LibraryInfo( | 110 "_native_typed_data": const LibraryInfo( |
111 "_internal/js_runtime/lib/native_typed_data.dart", | 111 "_internal/js_runtime/lib/native_typed_data.dart", |
112 categories: "", | 112 categories: "", |
113 implementation: true, | 113 implementation: true, |
114 documented: false, | 114 documented: false, |
115 platforms: DART2JS_PLATFORM), | 115 platforms: DART2JS_PLATFORM), |
116 "svg": const LibraryInfo("svg/dartium/svg_dartium.dart", | 116 "svg": const LibraryInfo("svg/dart2js/svg_dart2js.dart.dart", |
vsm
2017/09/01 20:26:05
The '.dart.dart' here is breaking DDC.
| |
117 categories: "Client", | 117 categories: "Client", |
118 maturity: Maturity.WEB_STABLE, | 118 maturity: Maturity.WEB_STABLE, |
119 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 119 platforms: DART2JS_PLATFORM), |
120 "web_audio": const LibraryInfo("web_audio/dartium/web_audio_dartium.dart", | 120 "web_audio": const LibraryInfo("web_audio/dart2js/web_audio_dart2js.dart", |
121 categories: "Client", | 121 categories: "Client", |
122 maturity: Maturity.WEB_STABLE, | 122 maturity: Maturity.WEB_STABLE, |
123 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"), | 123 platforms: DART2JS_PLATFORM), |
124 "web_gl": const LibraryInfo("web_gl/dartium/web_gl_dartium.dart", | 124 "web_gl": const LibraryInfo("web_gl/dart2js/web_gl_dart2js.dart", |
125 categories: "Client", | 125 categories: "Client", |
126 maturity: Maturity.WEB_STABLE, | 126 maturity: Maturity.WEB_STABLE, |
127 dart2jsPath: "web_gl/dart2js/web_gl_dart2js.dart"), | 127 platforms: DART2JS_PLATFORM), |
128 "web_sql": const LibraryInfo("web_sql/dartium/web_sql_dartium.dart", | 128 "web_sql": const LibraryInfo("web_sql/dart2js/web_sql_dart2js.dart", |
129 categories: "Client", | 129 categories: "Client", |
130 maturity: Maturity.WEB_STABLE, | 130 maturity: Maturity.WEB_STABLE, |
131 dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"), | 131 platforms: DART2JS_PLATFORM), |
132 "_internal": const LibraryInfo("internal/internal.dart", | 132 "_internal": const LibraryInfo("internal/internal.dart", |
133 categories: "", | 133 categories: "", |
134 documented: false, | 134 documented: false, |
135 dart2jsPatchPath: "_internal/js_runtime/lib/internal_patch.dart"), | 135 dart2jsPatchPath: "_internal/js_runtime/lib/internal_patch.dart"), |
136 "_js_helper": const LibraryInfo("_internal/js_runtime/lib/js_helper.dart", | 136 "_js_helper": const LibraryInfo("_internal/js_runtime/lib/js_helper.dart", |
137 categories: "", documented: false, platforms: DART2JS_PLATFORM), | 137 categories: "", documented: false, platforms: DART2JS_PLATFORM), |
138 "_interceptors": const LibraryInfo( | 138 "_interceptors": const LibraryInfo( |
139 "_internal/js_runtime/lib/interceptors.dart", | 139 "_internal/js_runtime/lib/interceptors.dart", |
140 categories: "", | 140 categories: "", |
141 documented: false, | 141 documented: false, |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
301 "Stable", | 301 "Stable", |
302 "The library is stable. API backwards-compatibility is guaranteed.\n" | 302 "The library is stable. API backwards-compatibility is guaranteed.\n" |
303 "However implementation details might change."); | 303 "However implementation details might change."); |
304 | 304 |
305 static const Maturity LOCKED = const Maturity(5, "Locked", | 305 static const Maturity LOCKED = const Maturity(5, "Locked", |
306 "This library will not change except when serious bugs are encountered."); | 306 "This library will not change except when serious bugs are encountered."); |
307 | 307 |
308 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 308 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
309 "The maturity for this library has not been specified."); | 309 "The maturity for this library has not been specified."); |
310 } | 310 } |
OLD | NEW |