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