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
It is possible to have a Javascript based parser that at the very least does syntax checking while the user types and immediately shows the results. This would help avoid submitting bad code, waiting a few seconds for the compile, then realizing the problem.
For some of the simpler semantic checks, this may also be possible.
For reference, the JavaScript mode in Ace has such functionality:
It is possible to have a Javascript based parser that at the very least does syntax checking while the user types and immediately shows the results. This would help avoid submitting bad code, waiting a few seconds for the compile, then realizing the problem.
For some of the simpler semantic checks, this may also be possible.
For reference, the JavaScript mode in Ace has such functionality:
https://github.com/ajaxorg/ace/blob/master/lib/ace/mode/javascript_worker.js
https://github.com/ajaxorg/ace/blob/master/lib/ace/mode/javascript/jshint.js
The text was updated successfully, but these errors were encountered: