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

Unified Diff: lib/dom/idl/dart/dart.idl

Issue 10388084: Better support for the case of typed arrays inheriting from other typed arrays. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index 73f23904a685144171cdd07651d51c69bd42aebe..089643559e0f3bc16c480006d0fffbdfca8aa144 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -16,14 +16,6 @@ module default {
Int16Array implements sequence<int>;
Int32Array implements sequence<int>;
Uint8Array implements sequence<int>;
- // Ugliness ahead: we cannot analyse inheritance right now when deducing if
- // given interface is a typed array (database is not accessible), so I have
- // to duplicate both sequence<int> and ArrayBufferView to make our heuristics
- // work.
- // FIXME: thread datatbase to all the clients that need it and probably
- // move the method itself to database.
- Uint8ClampedArray implements sequence<int>;
- Uint8ClampedArray implements ArrayBufferView;
Uint16Array implements sequence<int>;
Uint32Array implements sequence<int>;

Powered by Google App Engine
This is Rietveld 408576698