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

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

Issue 130563004: Redo "Make dart2js typed_data implementation classes private" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 category: "Client", 99 category: "Client",
100 implementation: true, 100 implementation: true,
101 documented: false, 101 documented: false,
102 platforms: VM_PLATFORM), 102 platforms: VM_PLATFORM),
103 103
104 "typed_data": const LibraryInfo( 104 "typed_data": const LibraryInfo(
105 "typed_data/typed_data.dart", 105 "typed_data/typed_data.dart",
106 maturity: Maturity.STABLE, 106 maturity: Maturity.STABLE,
107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), 107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"),
108 108
109 "_native_typed_data": const LibraryInfo(
110 "typed_data/dart2js/native_typed_data_dart2js.dart",
111 category: "Internal",
112 maturity: Maturity.STABLE,
113 platforms: DART2JS_PLATFORM),
114
109 "svg": const LibraryInfo( 115 "svg": const LibraryInfo(
110 "svg/dartium/svg_dartium.dart", 116 "svg/dartium/svg_dartium.dart",
111 category: "Client", 117 category: "Client",
112 maturity: Maturity.WEB_STABLE, 118 maturity: Maturity.WEB_STABLE,
113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), 119 dart2jsPath: "svg/dart2js/svg_dart2js.dart"),
114 120
115 "web_audio": const LibraryInfo( 121 "web_audio": const LibraryInfo(
116 "web_audio/dartium/web_audio_dartium.dart", 122 "web_audio/dartium/web_audio_dartium.dart",
117 category: "Client", 123 category: "Client",
118 maturity: Maturity.WEB_STABLE, 124 maturity: Maturity.WEB_STABLE,
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 static const Maturity STABLE = const Maturity(4, "Stable", 296 static const Maturity STABLE = const Maturity(4, "Stable",
291 "The library is stable. API backwards-compatibility is guaranteed.\n" 297 "The library is stable. API backwards-compatibility is guaranteed.\n"
292 "However implementation details might change."); 298 "However implementation details might change.");
293 299
294 static const Maturity LOCKED = const Maturity(5, "Locked", 300 static const Maturity LOCKED = const Maturity(5, "Locked",
295 "This library will not change except when serious bugs are encountered."); 301 "This library will not change except when serious bugs are encountered.");
296 302
297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 303 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
298 "The maturity for this library has not been specified."); 304 "The maturity for this library has not been specified.");
299 } 305 }
300
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/builder.dart ('k') | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698