• Home
  • Raw
  • Download

Lines Matching +full:0 +full:x

58         IRNode.pg = new PandaGen("foo", creatAstFromSnippet("2 < 3;"), 0, undefined);
67 new Less(new Imm(0), lhs),
81 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 > 1;"), 0, undefined);
90 new Greater(new Imm(0), lhs),
104 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 <= 4;"), 0, undefined);
113 new Lesseq(new Imm(0), lhs),
127 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 >= 2;"), 0, undefined);
136 new Greatereq(new Imm(0), lhs),
150 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 == 3;"), 0, undefined);
159 new Eq(new Imm(0), lhs),
173 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 != 2;"), 0, undefined);
182 new Noteq(new Imm(0), lhs),
196 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 === 3;"), 0, undefined);
205 new Stricteq(new Imm(0), lhs),
219 IRNode.pg = new PandaGen("foo", creatAstFromSnippet("3 !== 3;"), 0, undefined);
228 new Strictnoteq(new Imm(0), lhs),
243 … IRNode.pg = new PandaGen("foo", creatAstFromSnippet("let a = 5;\n" + "a &= 3;"), 0, undefined);
248 new Sttoglobalrecord(new Imm(0), 'a'),
262 … IRNode.pg = new PandaGen("foo", creatAstFromSnippet("let a = 5;\n" + "a |= 3;"), 0, undefined);
267 new Sttoglobalrecord(new Imm(0), 'a'),
281 … IRNode.pg = new PandaGen("foo", creatAstFromSnippet("let a = 5;\n" + "a ^= 3;"), 0, undefined);
286 new Sttoglobalrecord(new Imm(0), 'a'),
298 let insns = compileMainSnippet(`let x = 1;
299 x = (x++, x);`);
300 … IRNode.pg = new PandaGen("foo", creatAstFromSnippet(`let x = 1; x = (x++, x);`), 0, undefined);
306 new Sttoglobalrecord(new Imm(0), 'x'),
307 new Tryldglobalbyname(new Imm(1), 'x'),
311 new Trystglobalbyname(new Imm(3), 'x'),
315 new Tryldglobalbyname(new Imm(5), 'x'),
316 new Trystglobalbyname(new Imm(6), 'x'),
324 IRNode.pg = new PandaGen("foo", creatAstFromSnippet(`'o' in C;`), 0, undefined);
330 new Tryldglobalbyname(new Imm(0), "C"),
339 IRNode.pg = new PandaGen("foo", creatAstFromSnippet(`o instanceof C;`), 0, undefined);
343 new Tryldglobalbyname(new Imm(0), "o"),