Added honeypot compile action that detects if you try to do an 'else'

without an 'if' and gives a helpful message.
This commit is contained in:
Bruce Hill 2019-01-23 15:28:40 -08:00
parent 7a64bdb40f
commit ea8ca28ffb

View File

@ -39,6 +39,13 @@ test:
end
")
(else $) compiles to:
at (this tree) fail ("
Compile error: This 'else' is not connected to any 'if' or 'unless' condition.
Hint: You should probably have a ".." in front of the "else", to indicate \
..that it's attached to the previous condition.
")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Conditional expression (ternary operator)