Lines Matching full:j
131 it('var i, j in the global scope', function () {
133 snippetCompiler.compile("var i, j;");
138 let j = globalScope.findLocal("j"); variable
139 expect(j instanceof GlobalVariable).to.be.true;
142 it('let i, j in the global scope', function () {
144 snippetCompiler.compile("let i, j;");
149 let j = globalScope.findLocal("j"); variable
150 expect(j instanceof LocalVariable).to.be.true;
153 it('const i, j in the global scope', function () {
155 snippetCompiler.compile("const i=5, j=5;");
160 let j = globalScope.findLocal("j"); variable
161 expect(j instanceof LocalVariable).to.be.true;