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

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

Issue 12982010: Review changes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged Created 7 years, 9 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 | « runtime/vm/symbols.h ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/typeddata_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/typeddata_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/typeddata_patch.dart
index 8dd7bccad456e0d39b82c9915ddd3b79f525ce13..28d2233df3144fe64e9e1bab10e00b55d747a0f4 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/typeddata_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/typeddata_patch.dart
@@ -139,6 +139,38 @@ patch class Float64List {
}
+patch class Float32x4List {
+ patch factory Float32x4List(int length) {
+ throw new UnsupportedError('Float32x4List');
+ }
+
+ patch factory Float32x4List.view(ByteBuffer buffer,
+ [int offsetInBytes = 0, int length]) {
+ throw new UnsupportedError('Float32x4List.view');
+ }
+}
+
+
+patch class Float32x4 {
+ patch factory Float32x4(double x, double y, double z, double w) {
+ throw new UnsupportedError('Float32x4');
+ }
+ patch factory Float32x4.zero() {
+ throw new UnsupportedError('Float32x4.zero');
+ }
+}
+
+
+patch class Uint32x4 {
+ patch factory Uint32x4(int x, int y, int z, int w) {
+ throw new UnsupportedError('Uint32x4');
+ }
+ patch factory Uint32x4.bool(bool x, bool y, bool z, bool w) {
+ throw new UnsupportedError('Uint32x4.bool');
+ }
+}
+
+
patch class ByteData {
patch factory ByteData(int length) {
throw new UnsupportedError('ByteData');
« no previous file with comments | « runtime/vm/symbols.h ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698