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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/libraries.dart
diff --git a/sdk/lib/_internal/libraries.dart b/sdk/lib/_internal/libraries.dart
index 7135991af4687497312b3bfb4e4568ac219deb11..a86099e5e5b29d1096fd382aa6b132a1970ceef0 100644
--- a/sdk/lib/_internal/libraries.dart
+++ b/sdk/lib/_internal/libraries.dart
@@ -106,6 +106,13 @@ const Map<String, LibraryInfo> LIBRARIES = const {
maturity: Maturity.STABLE,
dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"),
+ "_native_typed_data": const LibraryInfo(
+ "typed_data/dart2js/native_typed_data_dart2js.dart",
+ category: "Internal",
+ maturity: Maturity.STABLE,
+ //dart2jsPath: "typed_data/dart2js/native_typed_data_dart2js.dart",
floitsch 2014/01/15 09:33:30 remove?
sra1 2014/01/15 20:13:41 Done.
+ platforms: DART2JS_PLATFORM),
+
"svg": const LibraryInfo(
"svg/dartium/svg_dartium.dart",
category: "Client",
@@ -297,4 +304,3 @@ class Maturity {
static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
"The maturity for this library has not been specified.");
}
-

Powered by Google App Engine
This is Rietveld 408576698