source:
Dev/trunk/src/client/util/shrinksafe/tests/1768.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 234 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | // testing a simple var list with embedded things. |
2 | var 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.