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
To reproduce, run the following. When the Browse prompt appears, press Q. Then run the second code block; it will only print 1 and 2.
promise(function(resolve, reject) {
cat("1\n", file=stderr())
resolve("OK")
cat("2\n", file=stderr())
}) %...>% then(function(value) {
cat("3: ", value, "\n", file=stderr())
# When you get to this prompt, type Q to exit
browser()
cat("4\n", file=stderr())
})
# When you run this code after the code above, it only prints 1 and 2.
promise(function(resolve, reject) {
cat("1\n", file=stderr())
resolve("OK")
cat("2\n", file=stderr())
}) %...>% then(function(value) {
cat("3: ", value, "\n", file=stderr())
cat("4\n", file=stderr())
})
The text was updated successfully, but these errors were encountered:
To reproduce, run the following. When the Browse prompt appears, press Q. Then run the second code block; it will only print 1 and 2.
The text was updated successfully, but these errors were encountered: