mirror of
https://github.com/github/codeql.git
synced 2026-05-05 21:55:19 +02:00
JS: update test
This commit is contained in:
@@ -2,7 +2,7 @@ function f(
|
||||
x,
|
||||
x, // NOT OK
|
||||
\u0078 // NOT OK
|
||||
) {}
|
||||
) { return; }
|
||||
|
||||
this.addPropertyListener(prop.name, function(_, _, _, a) {
|
||||
proxy.delegate = a.dao;
|
||||
@@ -12,3 +12,8 @@ this.addPropertyListener(prop.name, function(_, _, _, a) {
|
||||
function f(x, y, x) {
|
||||
'use strict';
|
||||
}
|
||||
|
||||
function f(
|
||||
x,
|
||||
x // OK: empty function
|
||||
) { }
|
||||
|
||||
Reference in New Issue
Block a user