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

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

Issue 13936009: Inline Float32x4 constructors (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/typed_data_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/typed_data_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/typed_data_patch.dart
index 183dec21f1d9eff90dc338c337299dd944f69f2d..1f32792d0437850d8e8070affa52ae9afbd61807 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/typed_data_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/typed_data_patch.dart
@@ -199,6 +199,9 @@ patch class Float32x4 {
patch factory Float32x4(double x, double y, double z, double w) {
throw new UnsupportedError('Float32x4');
}
+ patch factory Float32x4.splat(double v) {
+ throw new UnsupportedError('Float32x4.splat');
+ }
patch factory Float32x4.zero() {
throw new UnsupportedError('Float32x4.zero');
}

Powered by Google App Engine
This is Rietveld 408576698