JSLint will throw the "Expected parameter (value) in set '{a}' function" error when it encounters multiple named arguments in the signature of a property setter function, none of which have the identifier value. In the following example we create an object x with a getter and setter. The getter will always return half of the set value (since getters and setters are an ECMAScript 5 feature we need to set the es5 option, otherwise JSLint will not recognise them):
This error is raised to highlight a lack of convention and a completely pointless piece of code. Your code will run without error if you do not change it, but could be confusing to other developers and adds unnecessary bytes to the weight of your script.
ECMAScript 5 added new syntax for object property getter and setter functions. The specification states the following in reference to getters (ES5 §8.6.1):
The function’s [[Call]] internal method... is called with an arguments list containing the assigned value as its sole argument each time a set access of the property is performed.
Since the runtime will only ever pass a single argument to the function, there is no need to provide more than one named argument in the function signature. By convention, this single argument should be named value, since it will be used to set the value of something. To fix this error, simply remove any additional named arguments, and rename the first one to value: