Thanks for the great job.
I was looking for something like /*jsl:define xxx*/...
I saw the thread "Is there a way to declare extern's?".
Is it implemented? Is anybody working on this?
cheers,
Eduardo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
Thanks for the great job.
I was looking for something like /*jsl:define xxx*/...
I saw the thread "Is there a way to declare extern's?".
Is it implemented? Is anybody working on this?
cheers,
Eduardo
Eduardo, this is implemented as /*jsl:declare xxx*/ in the latest version. You can test it using the following code at http://www.javascriptlint.com/online_lint.php:
/*jsl:option explicit*/
/*jsl:declare x*/
x = 0;
y = 42;
Regards,
Matthias Miller
Great
Thanks