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

Unified Diff: runtime/vm/snapshot.cc

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/snapshot.cc
===================================================================
--- runtime/vm/snapshot.cc (revision 32446)
+++ runtime/vm/snapshot.cc (working copy)
@@ -155,7 +155,7 @@
str_(String::Handle()),
library_(Library::Handle()),
type_(AbstractType::Handle()),
- type_arguments_(AbstractTypeArguments::Handle()),
+ type_arguments_(TypeArguments::Handle()),
tokens_(Array::Handle()),
stream_(TokenStream::Handle()),
data_(ExternalTypedData::Handle()),
@@ -1361,7 +1361,7 @@
intptr_t array_kind,
intptr_t tags,
RawSmi* length,
- RawAbstractTypeArguments* type_arguments,
+ RawTypeArguments* type_arguments,
RawObject* data[]) {
intptr_t len = Smi::Value(length);

Powered by Google App Engine
This is Rietveld 408576698