]> code.delx.au - gnu-emacs-elpa/blob - packages/context-coloring/fixtures/test/function-scopes.js
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / context-coloring / fixtures / test / function-scopes.js
1 var a = function () {};
2 function b() {
3 var c = function () {};
4 function d() {}
5 }