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

Unified Diff: runtime/vm/snapshot.h

Issue 2005723004: Fraction class prototype and test (not to be committed). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: work in progress Created 4 years, 5 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
« no previous file with comments | « runtime/vm/scanner.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.h
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index 1d8f585320b9aeaa431f494ad4678e5bdda10f2c..96911666f784201808fb510313d865599f1d1dfe 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -51,6 +51,7 @@ class RawExceptionHandlers;
class RawField;
class RawFloat32x4;
class RawFloat64x2;
+class RawFraction;
class RawFunction;
class RawGrowableObjectArray;
class RawICData;
@@ -449,6 +450,7 @@ class SnapshotReader : public BaseReader {
RawInstance* NewInstance();
RawMint* NewMint(int64_t value);
RawBigint* NewBigint();
+ RawFraction* NewFraction();
RawTypedData* NewTypedData(intptr_t class_id, intptr_t len);
RawDouble* NewDouble(double value);
RawUnresolvedClass* NewUnresolvedClass();
@@ -613,6 +615,7 @@ class SnapshotReader : public BaseReader {
friend class ContextScope;
friend class ExceptionHandlers;
friend class Field;
+ friend class Fraction;
friend class Function;
friend class GrowableObjectArray;
friend class ICData;
« no previous file with comments | « runtime/vm/scanner.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698