• Home
  • Raw
  • Download

Lines Matching full:throw

37     // 1. If NewTarget is undefined, throw a TypeError exception.  in DataViewConstructor()
42 // 2. If Type(buffer) is not Object, throw a TypeError exception. in DataViewConstructor()
46 // 3. If buffer does not have an [[ArrayBufferData]] internal slot, throw a TypeError exception. in DataViewConstructor()
56 // 7. If numberOffset ≠ offset or offset < 0, throw a RangeError exception. in DataViewConstructor()
61 // 8. If IsDetachedBuffer(buffer) is true, throw a TypeError exception. in DataViewConstructor()
68 // 10. If offset > bufferByteLength, throw a RangeError exception. in DataViewConstructor()
83 // If offset+viewByteLength > bufferByteLength, throw a RangeError exception. in DataViewConstructor()
116 // 2. f Type(O) is not Object, throw a TypeError exception. in GetBuffer()
120 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetBuffer()
140 // 2. If Type(O) is not Object, throw a TypeError exception. in GetByteLength()
144 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetByteLength()
151 // 5. If IsDetachedBuffer(buffer) is true, throw a TypeError exception. in GetByteLength()
170 // 2. If Type(O) is not Object, throw a TypeError exception. in GetOffset()
174 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetOffset()
181 // 5. If IsDetachedBuffer(buffer) is true, throw a TypeError exception. in GetOffset()
334 // 1. If Type(view) is not Object, throw a TypeError exception. in GetViewValue()
338 // 2. If view does not have a [[DataView]] internal slot, throw a TypeError exception. in GetViewValue()
347 // 6. If numberIndex ≠ getIndex or getIndex < 0, throw a RangeError exception. in GetViewValue()
362 // 9. If IsDetachedBuffer(buffer) is true, throw a TypeError exception. in GetViewValue()
372 // 13. If getIndex +elementSize > viewSize, throw a RangeError exception. in GetViewValue()
387 // 1. If Type(view) is not Object, throw a TypeError exception. in SetViewValue()
392 // 2. If view does not have a [[DataView]] internal slot, throw a TypeError exception. in SetViewValue()
401 // 6. If numberIndex ≠ getIndex or getIndex < 0, throw a RangeError exception. in SetViewValue()
417 // 9. If IsDetachedBuffer(buffer) is true, throw a TypeError exception. in SetViewValue()
427 // 13. If getIndex +elementSize > viewSize, throw a RangeError exception. in SetViewValue()