| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 11396)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -871,8 +871,8 @@
|
| // Check if this type represents the 'int' interface.
|
| bool IsIntInterface() const;
|
|
|
| - // Check if this type represents the 'double' interface.
|
| - bool IsDoubleInterface() const;
|
| + // Check if this type represents the 'double' type.
|
| + bool IsDoubleType() const;
|
|
|
| // Check if this type represents the 'num' type.
|
| bool IsNumberType() const;
|
| @@ -995,8 +995,8 @@
|
| // The 'Mint' type.
|
| static RawType* MintType();
|
|
|
| - // The 'double' interface type.
|
| - static RawType* DoubleInterface();
|
| + // The 'double' type.
|
| + static RawType* Double();
|
|
|
| // The 'num' interface type.
|
| static RawType* Number();
|
| @@ -3354,6 +3354,8 @@
|
| };
|
|
|
|
|
| +// Class Double represents class Double in corelib_impl, which implements
|
| +// abstract class double in corelib.
|
| class Double : public Number {
|
| public:
|
| double value() const {
|
|
|