You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/lexical-scope/test/files/detect.js

33 lines
440 B
JavaScript

var x = 5;
var y = 3, z = 2;
w.foo();
w = 2;
RAWR=444;
RAWR.foo();
BLARG=3;
foo(function () {
var BAR = 3;
process.nextTick(function (ZZZZZZZZZZZZ) {
console.log('beep boop');
var xyz = 4;
x += 10;
x.zzzzzz;
ZZZ=6;
});
function doom () {
if (AAA.aaa) {}
BBB.bbb = 3;
var z = 2 + CCC.x * 5;
}
ZZZ.foo();
});
function beep () {}
console.log(xyz);