63 lines
1.1 KiB
Plaintext
63 lines
1.1 KiB
Plaintext
This rule checks that a declaration doesn't use a name that is already in use. Indeed, it is possible to use the same symbol multiple times as either a variable or a function, but doing so is likely to confuse maintainers. Further it's possible that such reassignments are made in error, with the developer not realizing that the value of the variable is overwritten by the new assignment.
|
|
|
|
|
|
This rule also applies to function parameters.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,text]
|
|
----
|
|
var a = 'foo';
|
|
function a() {} // Noncompliant
|
|
console.log(a); // prints "foo"
|
|
|
|
function myFunc(arg) {
|
|
var arg = "event"; // Noncompliant, argument value is lost
|
|
}
|
|
|
|
fun(); // prints "bar"
|
|
|
|
function fun() {
|
|
console.log("foo");
|
|
}
|
|
|
|
fun(); // prints "bar"
|
|
|
|
function fun() { // Noncompliant
|
|
console.log("bar");
|
|
}
|
|
|
|
fun(); // prints "bar"
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
var a = 'foo';
|
|
function otherName() {}
|
|
console.log(a);
|
|
|
|
function myFunc(arg) {
|
|
var newName = "event";
|
|
}
|
|
|
|
fun(); // prints "foo"
|
|
|
|
function fun() {
|
|
print("foo");
|
|
}
|
|
|
|
fun(); // prints "foo"
|
|
|
|
function printBar() {
|
|
print("bar");
|
|
}
|
|
|
|
printBar(); // prints "bar"
|
|
----
|
|
|
|
|