| Index: runtime/vm/snapshot.h
|
| diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
|
| index 616235db0893a6f1801e3492f0ae986a2f9bc327..2b99a6194072e838c0611f5017fed8654f945f1e 100644
|
| --- a/runtime/vm/snapshot.h
|
| +++ b/runtime/vm/snapshot.h
|
| @@ -42,6 +42,8 @@ class RawClosureData;
|
| class RawRedirectionData;
|
| class RawFunction;
|
| class RawGrowableObjectArray;
|
| +class RawFloat32x4;
|
| +class RawUint32x4;
|
| class RawImmutableArray;
|
| class RawLanguageError;
|
| class RawLibrary;
|
| @@ -263,6 +265,8 @@ class SnapshotReader : public BaseReader {
|
| RawScript* NewScript();
|
| RawLiteralToken* NewLiteralToken();
|
| RawGrowableObjectArray* NewGrowableObjectArray();
|
| + RawFloat32x4* NewFloat32x4(float v0, float v1, float v2, float v3);
|
| + RawUint32x4* NewUint32x4(uint32_t v0, uint32_t v1, uint32_t v2, uint32_t v3);
|
| RawApiError* NewApiError();
|
| RawLanguageError* NewLanguageError();
|
| RawObject* NewInteger(int64_t value);
|
|
|