Create clearer code by disallowing the bad practice of creating a label that shares a name with a variable that is in scope.
var x = foo;
function bar() {
x:
for (;;) {
break x;
}
}
// The variable that has the same name as the label is not in scope.
function foo() {
var q = t;
}
function bar() {
q:
for(;;) {
break q;
}
}