]> code.delx.au - gnu-emacs-elpa/blob - fixtures/test/block-scopes.js
Reorganize files.
[gnu-emacs-elpa] / fixtures / test / block-scopes.js
1 (function () {
2 if (1) {
3 var a;
4 let b;
5 const c;
6 }
7 }());
8
9 (function () {
10 'use strict';
11 if (1) {
12 var a;
13 let b;
14 const c;
15 }
16 }());