We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c9e47 commit b7dd455Copy full SHA for b7dd455
javascript/ql/test/library-tests/TripleDot/exceptions.js
@@ -9,8 +9,11 @@ function e1() {
9
array.forEach(x => {
10
throw source('e1.2');
11
});
12
+ array.forEach(() => {
13
+ throw source('e1.3'); // Same as e1.2 but without callback parameters
14
+ });
15
} catch (err) {
- sink(err); // $ hasValueFlow=e1.2 MISSING: hasValueFlow=e1.1
16
+ sink(err); // $ hasValueFlow=e1.2 MISSING: hasValueFlow=e1.1 hasValueFlow=e1.3
17
}
18
19
0 commit comments