In the common case, we take the early return in ensure_property_table() so let's make sure it gets inlined into property_table().
@@ -117,7 +117,7 @@ Optional<PropertyMetadata> Shape::lookup(const StringOrSymbol& property_name) co
return property;
}
-const HashMap<StringOrSymbol, PropertyMetadata>& Shape::property_table() const
+FLATTEN HashMap<StringOrSymbol, PropertyMetadata> const& Shape::property_table() const
{
ensure_property_table();
return *m_property_table;