Port to stricter C99
[emacs.git] / test / indent / js-indent-init-t.js
blobbb755420ba719d622b7143eed3ced337827ae700
1 var foo = function() {
2       return 7;
3     };
5 var foo = function() {
6       return 7;
7     },
8     bar = 8;
10 var foo = function() {
11       return 7;
12     },
13     bar = function() {
14       return 8;
15     };
17 // Local Variables:
18 // indent-tabs-mode: nil
19 // js-indent-level: 2
20 // js-indent-first-init: t
21 // End: