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

Unified Diff: runtime/vm/object.h

Issue 2045023003: Fix deferred load errors / bug #26482 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 984a718d1b86a73f2b9edda5a31e25d5de47eaaf..7029e447e60f13eb7fe00f643fef7b6b68d5395c 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -5421,6 +5421,7 @@ class LibraryPrefix : public Instance {
bool is_deferred_load() const { return raw_ptr()->is_deferred_load_; }
bool is_loaded() const { return raw_ptr()->is_loaded_; }
+ bool has_error() const;
bool LoadLibrary() const;
// Return the list of code objects that were compiled when this

Powered by Google App Engine
This is Rietveld 408576698