| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 561400b576e63a56a07800ffbee8b0b96b5ce18a..0f56fff091b37946fc82acd13749252de1d9382f 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -4718,7 +4718,7 @@ class LibraryPrefix : public Instance {
|
| virtual RawString* DictionaryName() const { return name(); }
|
|
|
| RawArray* imports() const { return raw_ptr()->imports_; }
|
| - int32_t num_imports() const { return raw_ptr()->num_imports_; }
|
| + intptr_t num_imports() const { return raw_ptr()->num_imports_; }
|
| RawLibrary* importer() const { return raw_ptr()->importer_; }
|
|
|
| RawInstance* LoadError() const;
|
|
|