On Jun 25, 4:14 pm, Rich Hickey <[email protected]> wrote:
> (let [x map inc nums)] ...)
>
> Clearly the message: "java.lang.Exception: Missing delimiter: ]" would
> not be helpful here.
But perhaps the message:
java.lang.Exception: Unmatched delimiter ')', expecting ']'
Would be quite useful? It would tell the user that the unmatched
delimiter was inside the [] block.
Some languages go a step further, and highlight syntax errors directly
with some ASCII art:
Unmatched delimiter:
(let [x map inc nums)]
^
Though that seems quite tricky to do within the limits of Java's
exception handling. You couldn't really guarentee your output would be
to a terminal with a fixed-width font.
- James
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---