plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / js-sub-block-scope.js
blob0e9144f2affd73e08a2d6ecf4d3b670af209cbf5
2 function parent() {
3   function foo() {
4     if (test) {
5       function hello() {
6       }
7     } else {
8       function hi() {
9       }
10     }
11   }
13   function bar() {
14     function hello2() {}
15     function hi2() {}
16   }