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

Unified Diff: sdk/lib/_internal/compiler/implementation/compiler.dart

Issue 140543002: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/compiler.dart
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
index 2bc10a0bc83734a1c44afcd913ea74b5de4d1679..a49913157ca8a30f9e108da2cbb0f20efea8377a 100644
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
@@ -805,10 +805,10 @@ abstract class Compiler implements DiagnosticListener {
findRequiredElement(library, 'MirrorSystem');
mirrorsUsedClass =
findRequiredElement(library, 'MirrorsUsed');
- } else if (uri == new Uri(scheme: 'dart', path: '_native_typed_data')) {
+ } else if (uri == new Uri(scheme: 'dart', path: 'typed_data')) {
typedDataLibrary = library;
typedDataClass =
- findRequiredElement(library, 'NativeTypedData');
+ findRequiredElement(library, 'TypedData');
} else if (uri == new Uri(scheme: 'dart', path: '_collection-dev')) {
symbolImplementationClass =
findRequiredElement(library, 'Symbol');
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698