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

Side by Side Diff: sdk/lib/_internal/libraries.dart

Issue 804423003: dart2js: Change typedef encoding. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add comment. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/shared/runtime_data.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 category: "Internal", 204 category: "Internal",
205 documented: false, 205 documented: false,
206 platforms: DART2JS_PLATFORM), 206 platforms: DART2JS_PLATFORM),
207 207
208 "_js_embedded_names": const LibraryInfo( 208 "_js_embedded_names": const LibraryInfo(
209 "_internal/compiler/js_lib/shared/embedded_names.dart", 209 "_internal/compiler/js_lib/shared/embedded_names.dart",
210 category: "Internal", 210 category: "Internal",
211 documented: false, 211 documented: false,
212 platforms: DART2JS_PLATFORM), 212 platforms: DART2JS_PLATFORM),
213 213
214 "_js_runtime_data": const LibraryInfo(
215 "_internal/compiler/js_lib/shared/runtime_data.dart",
216 category: "Internal",
217 documented: false,
218 platforms: DART2JS_PLATFORM),
219
220 "_metadata": const LibraryInfo( 214 "_metadata": const LibraryInfo(
221 "html/html_common/metadata.dart", 215 "html/html_common/metadata.dart",
222 category: "Internal", 216 category: "Internal",
223 documented: false, 217 documented: false,
224 platforms: DART2JS_PLATFORM), 218 platforms: DART2JS_PLATFORM),
225 }; 219 };
226 220
227 /** 221 /**
228 * Information about a "dart:" library. 222 * Information about a "dart:" library.
229 */ 223 */
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 static const Maturity STABLE = const Maturity(4, "Stable", 320 static const Maturity STABLE = const Maturity(4, "Stable",
327 "The library is stable. API backwards-compatibility is guaranteed.\n" 321 "The library is stable. API backwards-compatibility is guaranteed.\n"
328 "However implementation details might change."); 322 "However implementation details might change.");
329 323
330 static const Maturity LOCKED = const Maturity(5, "Locked", 324 static const Maturity LOCKED = const Maturity(5, "Locked",
331 "This library will not change except when serious bugs are encountered."); 325 "This library will not change except when serious bugs are encountered.");
332 326
333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 327 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
334 "The maturity for this library has not been specified."); 328 "The maturity for this library has not been specified.");
335 } 329 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/shared/runtime_data.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698