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

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: Merged to tip of bleeding_edge. Updated test expecteation Created 8 years, 1 month 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/flow_graph_compiler_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index e17b5dd615e299041c85734ba3ac793d568fc1ee..eeb8989c86ea4e260b5fb1f3120813e85830c24d 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -3185,8 +3185,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;
@@ -3309,8 +3309,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();
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698