You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the playground looks like some console.log calls inside async functions are lost. This doesn't seem to affect immediately resolved promises.
Example Civet 0.6.66:
dog := 'https://dog.ceo/api/breeds/image/random'
main()
function main
await show_foo()
await fetch_dog();
function fetch_dog
fetch dog |> await |> .json() |> await |> console.log;
async function show_foo
console.log 'foo';
On the playground looks like some
console.log
calls inside async functions are lost. This doesn't seem to affect immediately resolved promises.Example
Civet 0.6.66
:playground
Output is just:
foo
Expected:
The text was updated successfully, but these errors were encountered: