mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
feat: add CanGc argument to Error::to_jsval (#36014)
* feat: add CanGc argument to Error::to_jsval Signed-off-by: Arya Nair <aryaajitnair@gmail.com> * feat: pass CanGc to gen_type_error Signed-off-by: Arya Nair <aryaajitnair@gmail.com> * fix: linting issues Signed-off-by: Arya Nair <aryaajitnair@gmail.com> --------- Signed-off-by: Arya Nair <aryaajitnair@gmail.com>
This commit is contained in:
parent
6807a6e532
commit
94d12de7fd
11 changed files with 45 additions and 24 deletions
|
@ -417,6 +417,7 @@ impl ReadableByteStreamController {
|
|||
cx,
|
||||
&self.global(),
|
||||
error.handle_mut(),
|
||||
can_gc,
|
||||
);
|
||||
|
||||
// Perform ! ReadableByteStreamControllerError(controller, e).
|
||||
|
@ -449,7 +450,7 @@ impl ReadableByteStreamController {
|
|||
rooted!(in(*cx) let mut rval = UndefinedValue());
|
||||
error
|
||||
.clone()
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut());
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut(), can_gc);
|
||||
read_into_request.error_steps(rval.handle(), can_gc);
|
||||
|
||||
// Return.
|
||||
|
@ -888,7 +889,8 @@ impl ReadableByteStreamController {
|
|||
|
||||
// Perform ! ReadableByteStreamControllerError(controller, e).
|
||||
rooted!(in(*cx) let mut error = UndefinedValue());
|
||||
e.clone().to_jsval(cx, &self.global(), error.handle_mut());
|
||||
e.clone()
|
||||
.to_jsval(cx, &self.global(), error.handle_mut(), can_gc);
|
||||
self.error(error.handle(), can_gc);
|
||||
|
||||
// Throw e.
|
||||
|
@ -1451,7 +1453,7 @@ impl ReadableByteStreamController {
|
|||
let error = Error::Type("can not clone array buffer".to_owned());
|
||||
error
|
||||
.clone()
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut());
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut(), can_gc);
|
||||
self.error(rval.handle(), can_gc);
|
||||
|
||||
// Return cloneResult.
|
||||
|
@ -1622,7 +1624,7 @@ impl ReadableByteStreamController {
|
|||
// TODO: check if `self.global()` is the right globalscope.
|
||||
error
|
||||
.clone()
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut());
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut(), can_gc);
|
||||
let promise = Promise::new(&global, can_gc);
|
||||
promise.reject_native(&rval.handle(), can_gc);
|
||||
promise
|
||||
|
@ -1809,7 +1811,7 @@ impl ReadableByteStreamController {
|
|||
// TODO: check if `self.global()` is the right globalscope.
|
||||
error
|
||||
.clone()
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut());
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut(), can_gc);
|
||||
let promise = Promise::new(&global, can_gc);
|
||||
promise.reject_native(&rval.handle(), can_gc);
|
||||
promise
|
||||
|
@ -1890,7 +1892,7 @@ impl ReadableByteStreamController {
|
|||
rooted!(in(*cx) let mut rval = UndefinedValue());
|
||||
error
|
||||
.clone()
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut());
|
||||
.to_jsval(cx, &self.global(), rval.handle_mut(), can_gc);
|
||||
read_request.error_steps(rval.handle(), can_gc);
|
||||
|
||||
// Return.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue