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

Unified Diff: runtime/vm/object.h

Issue 8506001: Finalize all classes (fix issue 364). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 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
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 1336)
+++ runtime/vm/object.h (working copy)
@@ -245,6 +245,16 @@
static RawClass* GetSingletonClass(int index);
static const char* GetSingletonClassName(int index);
+ static RawClass* CreateAndRegisterCoreInterface(
+ const char* cname,
+ const Script& script,
+ GrowableArray<const Class*>* classes);
+ static void RegisterCoreImplClass(
+ const Class& cls,
+ const char* cname,
+ const Script& impl_script,
+ GrowableArray<const Class*>* classes);
+
static void Init(Isolate* isolate);
static void InitFromSnapshot(Isolate* isolate);
static void InitOnce();
@@ -738,6 +748,9 @@
// Check if this type represents the 'Function' interface.
bool IsFunctionInterface() const;
+ // Check if this type represents a signature type.
+ bool IsSignatureType() const;
+
// Check if this type is an interface type.
bool IsInterfaceType() const {
if (!HasResolvedTypeClass()) {

Powered by Google App Engine
This is Rietveld 408576698