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

Unified Diff: runtime/vm/class_finalizer.h

Issue 154393003: Implement eager instantiation and canonicalization of type arguments at run (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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/class_finalizer.h
===================================================================
--- runtime/vm/class_finalizer.h (revision 32446)
+++ runtime/vm/class_finalizer.h (working copy)
@@ -11,17 +11,17 @@
namespace dart {
class AbstractType;
-class MixinAppType;
-class AbstractTypeArguments;
class Class;
class Error;
class Function;
class GrowableObjectArray;
+class MixinAppType;
class RawAbstractType;
class RawClass;
class RawType;
class Script;
class Type;
+class TypeArguments;
class UnresolvedClass;
// Traverses all pending, unfinalized classes, validates and marks them as
@@ -141,13 +141,13 @@
static void FinalizeTypeParameters(const Class& cls,
GrowableObjectArray* pending_types = NULL);
static void FinalizeTypeArguments(const Class& cls,
- const AbstractTypeArguments& arguments,
+ const TypeArguments& arguments,
intptr_t num_uninitialized_arguments,
Error* bound_error,
GrowableObjectArray* pending_types);
static void CheckTypeBounds(const Class& cls, const Type& type);
static void CheckTypeArgumentBounds(const Class& cls,
- const AbstractTypeArguments& arguments,
+ const TypeArguments& arguments,
Error* bound_error);
static void ResolveUpperBounds(const Class& cls);
static void FinalizeUpperBounds(const Class& cls);
« no previous file with comments | « runtime/vm/ast.h ('k') | runtime/vm/class_finalizer.cc » ('j') | runtime/vm/code_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698