Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: tool/input_sdk/lib/_internal/libraries.dart

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Reverted to new .dart files in input_sdk: please compare them against previous patchset Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 category: "Internal", 202 category: "Internal",
203 documented: false, 203 documented: false,
204 platforms: DART2JS_PLATFORM), 204 platforms: DART2JS_PLATFORM),
205 205
206 "_metadata": const LibraryInfo( 206 "_metadata": const LibraryInfo(
207 "html/html_common/metadata.dart", 207 "html/html_common/metadata.dart",
208 category: "Internal", 208 category: "Internal",
209 documented: false, 209 documented: false,
210 platforms: DART2JS_PLATFORM), 210 platforms: DART2JS_PLATFORM),
211 211
212 "_classes": const LibraryInfo(
213 "_internal/compiler/js_lib/classes.dart",
214 category: "Internal",
215 documented: false,
216 platforms: DART2JS_PLATFORM),
217
218 "_errors": const LibraryInfo(
219 "_internal/compiler/js_lib/errors.dart",
220 category: "Internal",
221 documented: false,
222 platforms: DART2JS_PLATFORM),
223
224 "_generators": const LibraryInfo(
225 "_internal/compiler/js_lib/generators.dart",
226 category: "Internal",
227 documented: false,
228 platforms: DART2JS_PLATFORM),
229
230 "_operations": const LibraryInfo(
231 "_internal/compiler/js_lib/operations.dart",
232 category: "Internal",
233 documented: false,
234 platforms: DART2JS_PLATFORM),
235
236 "_runtime": const LibraryInfo(
237 "_internal/compiler/js_lib/runtime.dart",
238 category: "Internal",
239 documented: false,
240 platforms: DART2JS_PLATFORM),
241
242 "_rtti": const LibraryInfo(
243 "_internal/compiler/js_lib/rtti.dart",
244 category: "Internal",
245 documented: false,
246 platforms: DART2JS_PLATFORM),
247
212 "_utils": const LibraryInfo( 248 "_utils": const LibraryInfo(
213 "_internal/compiler/js_lib/utils.dart", 249 "_internal/compiler/js_lib/utils.dart",
214 category: "Internal", 250 category: "Internal",
215 documented: false, 251 documented: false,
216 platforms: DART2JS_PLATFORM), 252 platforms: DART2JS_PLATFORM),
253
254 "_types": const LibraryInfo(
255 "_internal/compiler/js_lib/types.dart",
256 category: "Internal",
257 documented: false,
258 platforms: DART2JS_PLATFORM),
217 }; 259 };
218 260
219 /** 261 /**
220 * Information about a "dart:" library. 262 * Information about a "dart:" library.
221 */ 263 */
222 class LibraryInfo { 264 class LibraryInfo {
223 265
224 /** 266 /**
225 * Path to the library's *.dart file relative to this file. 267 * Path to the library's *.dart file relative to this file.
226 */ 268 */
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 static const Maturity STABLE = const Maturity(4, "Stable", 360 static const Maturity STABLE = const Maturity(4, "Stable",
319 "The library is stable. API backwards-compatibility is guaranteed.\n" 361 "The library is stable. API backwards-compatibility is guaranteed.\n"
320 "However implementation details might change."); 362 "However implementation details might change.");
321 363
322 static const Maturity LOCKED = const Maturity(5, "Locked", 364 static const Maturity LOCKED = const Maturity(5, "Locked",
323 "This library will not change except when serious bugs are encountered."); 365 "This library will not change except when serious bugs are encountered.");
324 366
325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 367 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
326 "The maturity for this library has not been specified."); 368 "The maturity for this library has not been specified.");
327 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698