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

Unified Diff: runtime/lib/typed_data.dart

Issue 26191002: Hook ByteArrayViewLoad operations into polymorphic inliner (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | runtime/vm/flow_graph_optimizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/typed_data.dart
diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart
index 9e2a114e097ba57f770181caeb47b2946c65a1e7..62ca19787daec82bac5e49ae4281ea2b7128b40e 100644
--- a/runtime/lib/typed_data.dart
+++ b/runtime/lib/typed_data.dart
@@ -695,6 +695,8 @@ class _Uint8Array extends _TypedList implements Uint8List {
return _new(length);
}
+ int _getUint8(int offsetInBytes) native "TypedData_GetUint8";
Cutch 2013/10/07 23:49:50 I have to override _getUint8 in _Uint8Array and _E
+
static _Uint8Array _new(int length) native "TypedData_Uint8Array_new";
}
@@ -1405,6 +1407,8 @@ class _ExternalUint8Array extends _TypedList implements Uint8List {
return new Uint8List(length);
}
+ int _getUint8(int offsetInBytes) native "TypedData_GetUint8";
+
static _ExternalUint8Array _new(int length) native
"ExternalTypedData_Uint8Array_new";
}
« no previous file with comments | « no previous file | runtime/vm/flow_graph_optimizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698