Fixed
Details
Assignee
UnassignedUnassignedReporter
importimportPriority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
import
importPriority

Created July 13, 2017 at 10:59 AM
Updated March 31, 2020 at 7:54 PM
Resolved March 31, 2020 at 6:49 PM
If there is a "if" in a "finally" block and the enclosing "try" is in a CLJS "go" block, then the result of the "try" is always nil.
Example code:
(ns demo
(:require-macros
[cljs.core.async.macros :refer [go]]))
;; Prints: "in a try"
(println (try "in a try" (finally (if true nil ))))
;; Prints: "in a try"
(go (println (try "in a try" (finally nil))))
;; Prints: nil
(go (println (try "in a try" (finally (if true nil )))))