@@ -774,30 +774,30 @@ TEST_F(ObjectModelTest, HasProperty) {
774774 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, nonIndexIDString));
775775 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, indexIDNum));
776776 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, indexID2Num));
777- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
778- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *indexID));
779- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
780- ASSERT_FALSE (JSObject::hasNamed (self, runtime, *nonIndexID));
777+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
778+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID));
779+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
780+ ASSERT_FALSE (* JSObject::hasNamed (self, runtime, *nonIndexID));
781781
782782 ASSERT_TRUE (*JSObject::putNamedOrIndexed (self, runtime, *nonIndexID, self));
783783
784784 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, nonIndexIDString));
785785 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, indexIDNum));
786786 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, indexID2Num));
787- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
788- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *indexID));
789- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
790- ASSERT_TRUE (JSObject::hasNamed (self, runtime, *nonIndexID));
787+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
788+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID));
789+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
790+ ASSERT_TRUE (* JSObject::hasNamed (self, runtime, *nonIndexID));
791791
792792 ASSERT_TRUE (*JSObject::putNamedOrIndexed (self, runtime, *indexID, self));
793793
794794 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, nonIndexIDString));
795795 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, indexIDNum));
796796 ASSERT_FALSE (*JSObject::hasComputed (self, runtime, indexID2Num));
797- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
798- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *indexID));
799- ASSERT_FALSE (JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
800- ASSERT_TRUE (JSObject::hasNamed (self, runtime, *nonIndexID));
797+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
798+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID));
799+ ASSERT_FALSE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
800+ ASSERT_TRUE (* JSObject::hasNamed (self, runtime, *nonIndexID));
801801
802802 DefinePropertyFlags dpf{};
803803 ASSERT_TRUE (*JSObject::defineOwnProperty (
@@ -806,10 +806,10 @@ TEST_F(ObjectModelTest, HasProperty) {
806806 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, nonIndexIDString));
807807 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, indexIDNum));
808808 ASSERT_TRUE (*JSObject::hasComputed (self, runtime, indexID2Num));
809- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
810- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *indexID));
811- ASSERT_TRUE (JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
812- ASSERT_TRUE (JSObject::hasNamed (self, runtime, *nonIndexID));
809+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *nonIndexID));
810+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID));
811+ ASSERT_TRUE (* JSObject::hasNamedOrIndexed (self, runtime, *indexID2));
812+ ASSERT_TRUE (* JSObject::hasNamed (self, runtime, *nonIndexID));
813813}
814814
815815TEST_F (ObjectModelTest, UpdatePropertyFlagsWithoutTransitionsTest) {
0 commit comments