| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 6d73f43a799f4f71d4f5e1926a1caebc903f36ee..a640bd136d1ac1ade03bafe5218356e9624342de 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3510,6 +3510,12 @@ class AbstractType : public Instance {
|
| // Check if this type represents the 'double' type.
|
| bool IsDoubleType() const;
|
|
|
| + // Check if this type represents the 'Float32x4' type.
|
| + bool IsFloat32x4Type() const;
|
| +
|
| + // Check if this type represents the 'Uint32x4' type.
|
| + bool IsUint32x4Type() const;
|
| +
|
| // Check if this type represents the 'num' type.
|
| bool IsNumberType() const;
|
|
|
| @@ -3622,6 +3628,12 @@ class Type : public AbstractType {
|
| // The 'double' type.
|
| static RawType* Double();
|
|
|
| + // The 'Float32x4' type.
|
| + static RawType* Float32x4();
|
| +
|
| + // The 'Uint32x4' type.
|
| + static RawType* Uint32x4();
|
| +
|
| // The 'num' type.
|
| static RawType* Number();
|
|
|
|
|