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

Unified Diff: runtime/vm/object.h

Issue 11085003: Convert String to a class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove left-over List change in comment. Created 8 years, 2 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
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();

Powered by Google App Engine
This is Rietveld 408576698