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
Due to the way the parser's pattern-matching currently operates, a misuse of special forms such as defn, let, or do will result in special forms being translated as regular function calls. This produces misleading errors from the type checker such as free variable "with". Instead, misuse of special forms should produce specific error messages from the parser.
The text was updated successfully, but these errors were encountered:
Due to the way the parser's pattern-matching currently operates, a misuse of special forms such as
defn
,let
, ordo
will result in special forms being translated as regular function calls. This produces misleading errors from the type checker such asfree variable "with"
. Instead, misuse of special forms should produce specific error messages from the parser.The text was updated successfully, but these errors were encountered: