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

Unified Diff: runtime/vm/bootstrap.cc

Issue 2818273002: Remove parent_level field of function type parameters. (Closed)
Patch Set: address comments Created 3 years, 8 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 | « runtime/lib/mirrors.cc ('k') | runtime/vm/bootstrap_nocore.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap.cc
diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
index d90c7321eea087b51d8585725490b0e5b4118f63..f633cdbb1ce40b04213bfa923a2f0f7e738429c1 100644
--- a/runtime/vm/bootstrap.cc
+++ b/runtime/vm/bootstrap.cc
@@ -274,13 +274,15 @@ static void Finish(Thread* thread, bool from_kernel) {
#if defined(DEBUG)
// Verify that closure field offsets are identical in Dart and C++.
const Array& fields = Array::Handle(zone, cls.fields());
- ASSERT(fields.Length() == 3);
+ ASSERT(fields.Length() == 4);
Field& field = Field::Handle(zone);
field ^= fields.At(0);
- ASSERT(field.Offset() == Closure::instantiator_offset());
+ ASSERT(field.Offset() == Closure::instantiator_type_arguments_offset());
field ^= fields.At(1);
- ASSERT(field.Offset() == Closure::function_offset());
+ ASSERT(field.Offset() == Closure::function_type_arguments_offset());
field ^= fields.At(2);
+ ASSERT(field.Offset() == Closure::function_offset());
+ field ^= fields.At(3);
ASSERT(field.Offset() == Closure::context_offset());
#endif // defined(DEBUG)
« no previous file with comments | « runtime/lib/mirrors.cc ('k') | runtime/vm/bootstrap_nocore.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698