control-freak-ide/server/nodejs/util/shrinksafe/tests/1768.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

16 lines
234 B
JavaScript

// testing a simple var list with embedded things.
var result = 0;
(function(){
var a = 2,
b = 3,
superLong = 4,
aFunction = function(arg){
var inList = superLong;
result = inList;
}
;
aFunction(superLong);
})();