• Home
  • Raw
  • Download

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 WeakMapConstructor()
60 THROW_TYPE_ERROR_AND_RETURN(thread, "iterable is not object", JSTaggedValue::Exception()); in WeakMapConstructor()
70 THROW_TYPE_ERROR_AND_RETURN(thread, "adder is not callable", adder.GetTaggedValue()); in WeakMapConstructor()
82 // 2.If Type(S) is not Object, throw a TypeError exception. in Delete()
83 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Delete()
85 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakMap.", JSTaggedValue::Exception()); in Delete()
90 // 5.if Type(key) is not Object, return false. in Delete()
104 // 2.If Type(S) is not Object, throw a TypeError exception. in Has()
105 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Has()
107 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakMap.", JSTaggedValue::Exception()); in Has()
111 // 5.if Type(key) is not Object, return false. in Has()
125 // 2.If Type(S) is not Object, throw a TypeError exception. in Get()
126 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Get()
128 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakMap.", JSTaggedValue::Exception()); in Get()
146 // 2.If Type(S) is not Object, throw a TypeError exception. in Set()
147 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Set()
149 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not JSWeakMap.", JSTaggedValue::Exception()); in Set()
154 THROW_TYPE_ERROR_AND_RETURN(thread, "obj is not an object.", JSTaggedValue::Exception()); in Set()