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

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

Issue 14049034: Revert "Revert "Fix x.runtimeType for native classes"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/compiler/implementation/lib/js_array.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
index 2d73dc91acd0333c377df4f7f17dc557290c1ea9..30e0a39ce3aa9c88bb9cd20ffd894ab7ab95be0a 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
@@ -258,11 +258,6 @@ class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
int get hashCode => Primitives.objectHashCode(this);
- Type get runtimeType {
- // Call getRuntimeTypeString to get the name including type arguments.
- return new TypeImpl(getRuntimeTypeString(this));
- }
-
int get length => JS('int', r'#.length', this);
void set length(int newLength) {

Powered by Google App Engine
This is Rietveld 408576698