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

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

Issue 141523008: Revert "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 implementation: true,
113 documented: false,
114 platforms: DART2JS_PLATFORM),
115
116 "svg": const LibraryInfo( 109 "svg": const LibraryInfo(
117 "svg/dartium/svg_dartium.dart", 110 "svg/dartium/svg_dartium.dart",
118 category: "Client", 111 category: "Client",
119 maturity: Maturity.WEB_STABLE, 112 maturity: Maturity.WEB_STABLE,
120 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"),
121 114
122 "web_audio": const LibraryInfo( 115 "web_audio": const LibraryInfo(
123 "web_audio/dartium/web_audio_dartium.dart", 116 "web_audio/dartium/web_audio_dartium.dart",
124 category: "Client", 117 category: "Client",
125 maturity: Maturity.WEB_STABLE, 118 maturity: Maturity.WEB_STABLE,
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 static const Maturity STABLE = const Maturity(4, "Stable", 290 static const Maturity STABLE = const Maturity(4, "Stable",
298 "The library is stable. API backwards-compatibility is guaranteed.\n" 291 "The library is stable. API backwards-compatibility is guaranteed.\n"
299 "However implementation details might change."); 292 "However implementation details might change.");
300 293
301 static const Maturity LOCKED = const Maturity(5, "Locked", 294 static const Maturity LOCKED = const Maturity(5, "Locked",
302 "This library will not change except when serious bugs are encountered."); 295 "This library will not change except when serious bugs are encountered.");
303 296
304 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
305 "The maturity for this library has not been specified."); 298 "The maturity for this library has not been specified.");
306 } 299 }
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