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

Unified Diff: runtime/vm/kernel_binary_flowgraph.cc

Issue 3004973002: Revert "Store actual Reference(s) for additional exports." (Closed)
Patch Set: Update status file. Created 3 years, 4 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/vm/kernel_binary_flowgraph.h ('k') | tests/language_2/language_2_kernel.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/kernel_binary_flowgraph.cc
diff --git a/runtime/vm/kernel_binary_flowgraph.cc b/runtime/vm/kernel_binary_flowgraph.cc
index 9a2b13a116dd899194367c87b571d56c42f3072f..a9fdd607e3cc2a1342e8c6c7b78004001c729985 100644
--- a/runtime/vm/kernel_binary_flowgraph.cc
+++ b/runtime/vm/kernel_binary_flowgraph.cc
@@ -434,13 +434,6 @@ void LibraryHelper::ReadUntilExcluding(Field field) {
}
if (++next_read_ == field) return;
}
- case kAdditionalExports: {
- intptr_t name_count = builder_->ReadUInt();
- for (intptr_t i = 0; i < name_count; ++i) {
- builder_->SkipCanonicalNameReference();
- }
- if (++next_read_ == field) return;
- }
case kParts: {
intptr_t part_count = builder_->ReadUInt(); // read list length.
for (intptr_t i = 0; i < part_count; ++i) {
« no previous file with comments | « runtime/vm/kernel_binary_flowgraph.h ('k') | tests/language_2/language_2_kernel.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698