Does JSLint parse DOM functions?
- by Paul
I tried to use the parse() function of JSLint to parse three pieces of JavaScript code:
function(b, c){var a = b + c; return a; }
window.addEventListener('click', click_hanlder, true);
document.documentElement.innerHTML;
Here's the code, which is copied and pasted from the JSLint self-parse example:
`
try {
parse = make_parse();
var source…