]> code.delx.au - gnu-emacs-elpa/blob - test/fixtures/function-scopes.js
Trivial cleanup.
[gnu-emacs-elpa] / test / fixtures / function-scopes.js
1 var a = function () {};
2 function b() {
3 var c = function () {};
4 function d() {}
5 }