mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
206 B
JavaScript
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; |