Lines Matching full:not
4 * you may not use this file except in compliance with the License.
52 // 5.If iterable is not present, let iterable be undefined. in WeakSetConstructor()
67 THROW_TYPE_ERROR_AND_RETURN(thread, "adder is not callable", adder.GetTaggedValue()); in WeakSetConstructor()
116 // 2.If Type(S) is not Object, throw a TypeError exception. in Add()
117 // 3.If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. in Add()
119 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakSet", JSTaggedValue::Exception()); in Add()
124 THROW_TYPE_ERROR_AND_RETURN(thread, "value is not an object", JSTaggedValue::Exception()); in Add()
143 // 2.If Type(S) is not Object, throw a TypeError exception. in Delete()
144 // 3.If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. in Delete()
146 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakSet", JSTaggedValue::Exception()); in Delete()
164 // 2.If Type(S) is not Object, throw a TypeError exception. in Has()
165 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Has()
167 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakSet", JSTaggedValue::Exception()); in Has()