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
The current error messages are not as helpful as they could, for example, code Print("a", "b") produces error message:
No function matches for a call 'Print(String, String)'
Call of an undefined function 'Print'
This error message could provide some useful information, such as if there exists a function called "Print", but just has a different number of arguments.
Also, the syntax errors could use the actual characters and not just their abbreviated names. For example, the code
Sub a
EndSub
gives the error
Expected "lparen" but got "newline"
It could provide something such as
Expected `(' before the end of the line
The text was updated successfully, but these errors were encountered:
The current error messages are not as helpful as they could, for example, code
Print("a", "b")
produces error message:This error message could provide some useful information, such as if there exists a function called "Print", but just has a different number of arguments.
Also, the syntax errors could use the actual characters and not just their abbreviated names. For example, the code
gives the error
It could provide something such as
The text was updated successfully, but these errors were encountered: