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

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

Issue 1771713002: Reorganize tool/input_sdk/private (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « no previous file | tool/input_sdk/private/classes.dart » ('j') | 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "_runtime": const LibraryInfo( 212 "_runtime": const LibraryInfo(
213 "_internal/compiler/js_lib/runtime.dart", 213 "_internal/compiler/js_lib/ddc_runtime/runtime.dart",
214 category: "Internal", 214 category: "Internal",
215 documented: false, 215 documented: false,
216 platforms: DART2JS_PLATFORM), 216 platforms: DART2JS_PLATFORM),
217 217
218 "_debugger": const LibraryInfo( 218 "_debugger": const LibraryInfo(
219 "_internal/compiler/js_lib/debugger.dart", 219 "_internal/compiler/js_lib/debugger.dart",
220 category: "Internal", 220 category: "Internal",
221 documented: false, 221 documented: false,
222 platforms: DART2JS_PLATFORM), 222 platforms: DART2JS_PLATFORM),
223 }; 223 };
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 static const Maturity STABLE = const Maturity(4, "Stable", 324 static const Maturity STABLE = const Maturity(4, "Stable",
325 "The library is stable. API backwards-compatibility is guaranteed.\n" 325 "The library is stable. API backwards-compatibility is guaranteed.\n"
326 "However implementation details might change."); 326 "However implementation details might change.");
327 327
328 static const Maturity LOCKED = const Maturity(5, "Locked", 328 static const Maturity LOCKED = const Maturity(5, "Locked",
329 "This library will not change except when serious bugs are encountered."); 329 "This library will not change except when serious bugs are encountered.");
330 330
331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
332 "The maturity for this library has not been specified."); 332 "The maturity for this library has not been specified.");
333 } 333 }
OLDNEW
« no previous file with comments | « no previous file | tool/input_sdk/private/classes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698