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

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: Addressing review comments. Created 5 years, 11 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: src/types-inl.h
diff --git a/src/types-inl.h b/src/types-inl.h
index 2e7f8a36fa76325acc2dd57a9b5f84ab8ca28050..b8744df0bc8a72bf64297a774800fa0daa24c0b1 100644
--- a/src/types-inl.h
+++ b/src/types-inl.h
@@ -201,6 +201,9 @@ void ZoneTypeConfig::struct_set_value(
}
+// static
+i::Isolate* ZoneTypeConfig::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::isolate(Isolate* isolate) { return isolate; }
} } // namespace v8::internal
#endif // V8_TYPES_INL_H_

Powered by Google App Engine
This is Rietveld 408576698