| Index: sdk/lib/typed_data/typed_data.dart
|
| diff --git a/sdk/lib/typed_data/typed_data.dart b/sdk/lib/typed_data/typed_data.dart
|
| index 7184e4797769756a0ca6577124faa88fd51101f5..36b40892407a458e20d36e3a576bfb375bd2ee12 100644
|
| --- a/sdk/lib/typed_data/typed_data.dart
|
| +++ b/sdk/lib/typed_data/typed_data.dart
|
| @@ -1201,6 +1201,10 @@ abstract class Uint32x4 {
|
| Uint32x4 operator&(Uint32x4 other);
|
| /// The bit-wise xor operator.
|
| Uint32x4 operator^(Uint32x4 other);
|
| + /// Addition operator.
|
| + Uint32x4 operator+(Uint32x4 other);
|
| + /// Subtraction operator.
|
| + Uint32x4 operator-(Uint32x4 other);
|
|
|
| /// Extract 32-bit mask from x lane.
|
| int get x;
|
|
|