| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index f3aaf2575accb4c0b7cecc5da9078b368d84cc26..70734d492a13af8738f622e748a5dc39bb744487 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3100,8 +3100,8 @@ class AbstractType : public Instance {
|
| // Check if this type represents the 'num' type.
|
| bool IsNumberType() const;
|
|
|
| - // Check if this type represents the 'String' interface.
|
| - bool IsStringInterface() const;
|
| + // Check if this type represents the 'String' type.
|
| + bool IsStringType() const;
|
|
|
| // Check if this type represents the 'Function' type.
|
| bool IsFunctionType() const;
|
| @@ -3224,8 +3224,8 @@ class Type : public AbstractType {
|
| // The 'num' interface type.
|
| static RawType* Number();
|
|
|
| - // The 'String' interface type.
|
| - static RawType* StringInterface();
|
| + // The 'String' type.
|
| + static RawType* StringType();
|
|
|
| // The 'Function' interface type.
|
| static RawType* Function();
|
|
|