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
If I use symbols as test constants in a case expression, they are not quoted because the constants are not evaluated. But Cursive doesn't realize that and labels them as unable to be resolved (like “a cannot be resolved”), although there is not anything to be resolved.
Example
(case 'a
a 1
b 2
c 30)
; => 1
Proposed solution
Exclude case's test constants from name resolution in Cursive.
The text was updated successfully, but these errors were encountered:
If I use symbols as test constants in a case expression, they are not quoted because the constants are not evaluated. But Cursive doesn't realize that and labels them as unable to be resolved (like “a cannot be resolved”), although there is not anything to be resolved.
Example
Proposed solution
Exclude case's test constants from name resolution in Cursive.
The text was updated successfully, but these errors were encountered: