Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
19
rated 0 times [  25] [ 6]  / answers: 1 / hits: 35490  / 14 Years ago, mon, june 14, 2010, 12:00:00

I am working on making all of our JS code pass through jslint, sometimes with a lot of tweaking with the options to get legacy code pass for now on with the intention to fix it properly later.



There is one thing that jslint complains about that I do not have a workround for. That is when using constructs like this, we get the error 'Don't make functions within a loop.'



for (prop in newObject) {
// Check if we're overwriting an existing function
if (typeof newObject[prop] === function && typeof _super[prop] === function &&
fnTest.test(newObject[prop])) {
prototype[prop] = (function(name, func) {
return function() {
var result, old_super;

old_super = this._super;
this._super = _super[name];
result = func.apply(this, arguments);
this._super = old_super;

return result;
};
})(prop, newObject[prop]);
}
}


This loop is part of a JS implementation of classical inheritance where classes that extend existing classes retain the super property of the extended class when invoking a member of the extended class.
Just to clarify, the implementation above is inspired by this blog post by John Resig.



But we also have other instances of functions created within a loop.



The only workaround so far is to exclude these JS files from jslint, but we would like to use jslint for code validation and syntax checking as part of our continuous integration and build workflow.



Is there a better way to implement functionality like this or is there a way to tweak code like this through jslint?


More From » jslint

 Answers
234

Douglas Crockford has a new idiomatic way of achieving the above - his old technique was to use an inner function to bind the variables, but the new technique uses a function maker. See slide 74 in the slides to his Function the Ultimate talk. [This slideshare no longer exists]



For the lazy, here is the code:



function make_handler(div_id) {
return function () {
alert(div_id);
};
}
for (i ...) {
div_id = divs[i].id;
divs[i].onclick = make_handler(div_id);
}

[#96503] Friday, June 11, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
elaine

Total Points: 628
Total Questions: 111
Total Answers: 104

Location: Marshall Islands
Member since Tue, Sep 21, 2021
3 Years ago
;