Closed Bug 990043 Opened 10 years ago Closed 3 years ago

Consider adding a warning along the lines of the Promise.jsm "Cannot resolve a promise with an async function." warning

Categories

(Core :: DOM: Core & HTML, defect, P5)

x86
macOS
defect

Tracking

()

RESOLVED WONTFIX

People

(Reporter: bzbarsky, Unassigned)

References

(Blocks 1 open bug)

Details

Paolo, what sort of situations is that warning trying to catch?
Flags: needinfo?(paolo.mozmail)
Briefly, misusing "Task.async" instead of "Task.spawn".

See bug 966182 comment 10 for a full explanation.
Blocks: 885333
Flags: needinfo?(paolo.mozmail)
That helps some, but what is it about the return value of Task.async that makes it not suitable for passing to Promise.resolve, exactly?  And is it specific to return values of Task.async, or can it come up in general in other contexts?
(In reply to Boris Zbarsky [:bz] from comment #2)
> That helps some, but what is it about the return value of Task.async that
> makes it not suitable for passing to Promise.resolve, exactly?

You want to pass to Promise.resolve the invocation of the result of Task.async, not the result of Task.async.

If the async function itself is propagated as the resolution value, and a Promise handler invokes it, I guess that 99.9% of the times that indicates a mistake fixed by putting an invocation in the wrong place, and not really an API design that intended to return an async function instead of a Promise.

(In the unlikely case that that providing an async function is the desired behavior, you can just resolve to an object with an async function as one of its method.)

> And is it
> specific to return values of Task.async, or can it come up in general in
> other contexts?

Mostly specific to the result of Task.async.
> You want to pass to Promise.resolve the invocation of the result of Task.async, not the
> result of Task.async.

Ah, I see.  So the point is that Task.async is a Promise-returning function, and resolving a Promise with such a function is a bit odd.

We could in fact add warning to DOM promises for that sort of thing in the case when the function in question is declared in WebIDL, since then we can tell that it returns a Promise.

Anne, Domenic, does that seems reasonable?  Or are there use cases for resolving a Promise with such a function that make such a warning undesirable?
Resolving promises with functions is common (functions can be constructed asynchronously, or the choice between different functions can depend on information made available only asynchronously) and I don't really see why you would warn when doing that. That would be tantamount to warning when a synchronous function has a function as its return value.
This is not about resolving a promise with a function.  It's about resolving a promise with a function that itself resolves a promise.  It's possible that you'd do that, I guess, instead of just building the async choice of which thing to call into a single promise...
Yes, that seems analogous to a synchronous function returning another synchronous function instead of just building the sync choice of which thing to call into a single function.
https://bugzilla.mozilla.org/show_bug.cgi?id=1472046

Move all DOM bugs that haven't been updated in more than 3 years and has no one currently assigned to P5.

If you have questions, please contact :mdaly.
Priority: -- → P5
Component: DOM → DOM: Core & HTML

Task.jsm has gone away, and we're working towards removing Promise.jsm (Bug 1378173), so I think this is a wontfix.

Status: NEW → RESOLVED
Closed: 3 years ago
Resolution: --- → WONTFIX
You need to log in before you can comment on or make changes to this bug.