mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
14 lines
208 B
JavaScript
14 lines
208 B
JavaScript
eval = 42;
|
|
++eval;
|
|
var eval;
|
|
function x(eval) { }
|
|
var y = function eval() { };
|
|
eval("");
|
|
|
|
Object = function(){};
|
|
|
|
function f(undefined) {}
|
|
(function f(undefined){}());
|
|
|
|
Date = this.Date;
|
|
var Math = this.Math; |