Lines Matching full:foo
47 snippetCompiler.compile("function foo() {}");
49 let funcInternalName = "UnitTest.foo";
50 let funcName = "foo";
59 let foo = globalScope!.findLocal(funcName); variable
60 expect(foo != undefined).to.be.true;
61 expect(foo instanceof GlobalVariable).to.be.true;
67 function foo() {}
68 function foo() {}
72 new Definefunc(new Imm(0), "UnitTest.#2#foo", new Imm(0)),
73 new Stglobalvar(new Imm(1), "foo"),
79 let foo = globalScope!.findLocal("foo"); variable
80 expect(foo != undefined).to.be.true;
81 expect(foo instanceof GlobalVariable).to.be.true;
86 snippetCompiler.compile(`function out() {function foo() {}}`);
90 new Definefunc(new Imm(0), "UnitTest.foo", new Imm(0)),
100 let foo = functionScope!.findLocal("foo"); variable
101 expect(foo != undefined).to.be.true;
102 expect(foo instanceof LocalVariable).to.be.true;
109 snippetCompiler.compile("let foo = function() {}");
113 new Definefunc(new Imm(0), "UnitTest.foo", new Imm(0)),
114 new Sttoglobalrecord(new Imm(1), "foo"),