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

Unified Diff: runtime/vm/object.h

Issue 10832401: Gentle start with removing explicit interfaces (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
===================================================================
--- runtime/vm/object.h (revision 11079)
+++ runtime/vm/object.h (working copy)
@@ -875,13 +875,13 @@
bool IsDoubleInterface() const;
// Check if this type represents the 'num' interface.
- bool IsNumberInterface() const;
+ bool IsNumber() const;
// Check if this type represents the 'String' interface.
bool IsStringInterface() const;
- // Check if this type represents the 'Function' interface.
- bool IsFunctionInterface() const;
+ // Check if this type represents the 'Function' type.
+ bool IsFunction() const;
// Check if this type represents the 'List' interface.
bool IsListInterface() const;
@@ -993,13 +993,13 @@
static RawType* DoubleInterface();
// The 'num' interface type.
- static RawType* NumberInterface();
+ static RawType* Number();
// The 'String' interface type.
static RawType* StringInterface();
// The 'Function' interface type.
- static RawType* FunctionInterface();
+ static RawType* Function();
// The 'List' interface type.
static RawType* ListInterface();

Powered by Google App Engine
This is Rietveld 408576698