refactor: add CanGc as argument to Promise::reject_native (#35640)

Signed-off-by: Yerkebulan Tulibergenov <yerkebulan@gmail.com>
This commit is contained in:
Yerkebulan Tulibergenov 2025-02-24 19:58:36 -08:00 committed by GitHub
parent 3c3b6cfdc4
commit 31199076ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 148 additions and 136 deletions

View file

@ -593,15 +593,15 @@ DOMInterfaces = {
},
"ReadableStreamDefaultController": {
"canGc": ["Close", "Enqueue"]
"canGc": ["Close", "Enqueue", "Error"]
},
"ReadableStreamBYOBReader": {
"canGc": ["Read", "Cancel"]
"canGc": ["Cancel", "Read", "ReleaseLock"]
},
"ReadableStreamDefaultReader": {
"canGc": ["Read", "Cancel"]
"canGc": ["Cancel", "Read", "ReleaseLock"]
},
'WritableStream': {