mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
JS: Add explanation for test failure
This commit is contained in:
@@ -354,7 +354,7 @@ function mergePlainObjectsOnly(target, source) {
|
||||
if (isNonArrayObject(source[key]) && key in target) {
|
||||
target[key] = mergePlainObjectsOnly(target[key], source[key], options);
|
||||
} else {
|
||||
target[key] = source[key]; // OK - but flagged anyway
|
||||
target[key] = source[key]; // OK - but flagged anyway due to imprecise barrier for captured variable
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user