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

Unified Diff: src/types-inl.h

Issue 795713003: Steps towards unification of number bitset and range types. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix BitsetType::Max for OtherNumber with missing representation Created 6 years 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: src/types-inl.h
diff --git a/src/types-inl.h b/src/types-inl.h
index 2e7f8a36fa76325acc2dd57a9b5f84ab8ca28050..fb1e9e6ed128616398c43cc556bdce68231d7c91 100644
--- a/src/types-inl.h
+++ b/src/types-inl.h
@@ -201,6 +201,9 @@ void ZoneTypeConfig::struct_set_value(
}
+// static
+i::Isolate* ZoneTypeConfig::get_isolate(Zone* zone) { return zone->isolate(); }
+
// -----------------------------------------------------------------------------
// HeapTypeConfig
@@ -348,6 +351,8 @@ void HeapTypeConfig::struct_set_value(
structure->set(i + 1, *x);
}
+// static
+i::Isolate* HeapTypeConfig::get_isolate(Isolate* isolate) { return isolate; }
} } // namespace v8::internal
#endif // V8_TYPES_INL_H_

Powered by Google App Engine
This is Rietveld 408576698