source: Dev/trunk/src/client/util/shrinksafe/tests/1768.js @ 529

Last change on this file since 529 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 234 bytes
Line 
1// testing a simple var list with embedded things.
2var result = 0;
3
4(function(){
5        var a = 2,
6                b = 3,
7                superLong = 4,
8                aFunction = function(arg){
9                        var inList = superLong;
10                        result = inList;
11                }
12        ;
13       
14        aFunction(superLong);
15       
16})();
Note: See TracBrowser for help on using the repository browser.