| Index: runtime/lib/typed_data.dart
|
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart
|
| index c4e9259dc0521c5e3244bb8ba580b6f5fee8a66c..e60c1459d560d8fa0179812755741de54faaae5a 100644
|
| --- a/runtime/lib/typed_data.dart
|
| +++ b/runtime/lib/typed_data.dart
|
| @@ -2022,6 +2022,7 @@ class _Float32x4 implements Float32x4 {
|
| double get y native "Float32x4_getY";
|
| double get z native "Float32x4_getZ";
|
| double get w native "Float32x4_getW";
|
| + int get signMask native "Float32x4_getSignMask";
|
|
|
| Float32x4 shuffle(int mask) native "Float32x4_shuffle";
|
|
|
| @@ -2093,6 +2094,7 @@ class _Uint32x4 implements Uint32x4 {
|
| int get y native "Uint32x4_getY";
|
| int get z native "Uint32x4_getZ";
|
| int get w native "Uint32x4_getW";
|
| + int get signMask native "Uint32x4_getSignMask";
|
| Uint32x4 withX(int x) native "Uint32x4_setX";
|
| Uint32x4 withY(int y) native "Uint32x4_setY";
|
| Uint32x4 withZ(int z) native "Uint32x4_setZ";
|
|
|