Chromium Code Reviews| Index: runtime/vm/object.h |
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h |
| index 0724efea20fa3e05e8f8a5c0247ed39625266cae..81d034d87d5d24afec60eeacb2be1c194dc6f410 100644 |
| --- a/runtime/vm/object.h |
| +++ b/runtime/vm/object.h |
| @@ -702,6 +702,11 @@ class Class : public Object { |
| // function. |
| RawType* SignatureType() const; |
| + // Return the Type with type parameters declared by this class filled with |
| + // dynamic (and type parameters declared in superclasses filled in as declared |
| + // in superclass clauses). |
| + RawType* BasicType() const; |
|
rmacnak
2013/09/11 21:10:21
Perhaps ImplicitInstantiationType?
|
| + |
|
regis
2013/09/11 21:37:40
This is not the way to do it. You need to finalize
|
| RawLibrary* library() const { return raw_ptr()->library_; } |
| void set_library(const Library& value) const; |