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

Unified Diff: runtime/vm/object.cc

Issue 2140223002: Add missing trail argument when comparing cyclic type graphs (bug uncovered by hot reload). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 0136eb8edd1b6ca0ddafa0edb35418db5dab9f53..f6a010f9aea279e1e5fc9a9645db258e434d1862 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -16729,7 +16729,8 @@ bool Type::IsEquivalent(const Instance& other, TrailPtr trail) const {
}
} else if (!type_args.IsSubvectorEquivalent(other_type_args,
from_index,
- num_type_params)) {
+ num_type_params,
+ trail)) {
return false;
}
#ifdef DEBUG
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698