| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Maxim Mossienko |
| Subsystem | JavaScript |
| Affected versions |
No affected versions
|
| Fixed in |
No fix versions
|
| Fixed in build |
Next build |
| Build |
7304
|
| Fixed in build |
7596
|
IDEA-41627 |
Java Script: spurious warning about redundant local variable. |
|
screenshot-1.jpg
(237 KB)
|
function runTestFixture (testDoc, testFixture, continuation) {
var testCases = getTestFunctions(testFixture);
var testsFailedBefore = gTestsFailed; // why is it redundant?
runTests(testDoc, testFixture, testCases, 0, function () {
if (testsFailedBefore == gTestsFailed) {
setStatus(testDoc, testFixture, null, ICON_SUCCESS);
}
if (isFunction(continuation)) continuation();
});
}
|
Dmitry Shaporenkov
16 Oct 2007 01:10
(2 years ago)
|
|
|
|
Dmitry Shaporenkov
16 Oct 2007 01:11
(2 years ago)
|
|