Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upImplement WebIDL sequence arguments correctly #9290
Closed
Labels
Comments
|
cc @ecoal95 |
That code seems to internally use Edit: And it in fact supports const params = new URLSearchParams({
*[Symbol.iterator]() {
yield {
*[Symbol.iterator]() {
yield "ABC";
yield "BCD";
}
};
}
}).toString();
// returns "ABC=BCD" as expected |
|
I guess we're done here! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We do something silly right now with arrays rather than with
Symbol.iterator, as the spec says.See servo/rust-mozjs#226, #544, #9056.