JS: update test

This commit is contained in:
Esben Sparre Andreasen
2020-01-06 08:33:22 +01:00
parent 9b9d7121e8
commit 5718fbd98a
2 changed files with 7 additions and 1 deletions

View File

@@ -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
) { }