Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0d0adad

Browse files
committed
fixes tests and adds test results to expecteds
1 parent a16b5d3 commit 0d0adad

3 files changed

Lines changed: 833 additions & 4 deletions

File tree

javascript/ql/test/library-tests/Expr/nullSensitiveContexts.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ x *= y
2727
x /= y
2828
x %= y
2929
x , y = p
30-
[1,2,...xs]
30+
//[1,2,...xs]
3131
x & y
3232
x | y
3333
x ^ y
3434
x << y
3535
x >> y
36-
x <<< y
36+
x >>> y
3737
~x
3838
x &= y
3939
x |= y
@@ -57,4 +57,4 @@ x || y
5757
if (x) { }
5858
while (x) { }
5959
for (; y; z) { }
60-
for (let x in y) { }
60+
for (let x in y) { }

0 commit comments

Comments
 (0)