Files
Asger F 426a871405 JS: Remove incorrect Alert marker
This is expected, based on a comment earlier in the file about the 'y' variable
2025-02-28 13:27:54 +01:00

8 lines
206 B
JavaScript

/*global w, x:true*/
/* global y*/ // not a proper JSLint global declaration, but we (and JSHint) accept it anyway
/*global: z*/ // also not a proper global declaration
w;
x;
y;
z; // $ Alert
var x, y, z;