Searched refs:TestAll (Results 1 - 4 of 4) sorted by relevance

/external/v8/test/mjsunit/harmony/
H A Dblock-let-semantics.js57 function TestAll(s) { function
63 TestAll('let x = x + 1');
64 TestAll('let x = x += 1');
65 TestAll('let x = x++');
66 TestAll('let x = ++x');
67 TestAll('const x = x + 1');
70 TestAll('x + 1; let x;');
71 TestAll('x = 1; let x;');
72 TestAll('x += 1; let x;');
73 TestAll('
[all...]
H A Dblock-let-crankshaft.js211 function TestAll(s) { function
217 TestAll('let x = x + 1');
218 TestAll('let x = x += 1');
219 TestAll('let x = x++');
220 TestAll('let x = ++x');
221 TestAll('const x = x + 1');
224 TestAll('x + 1; let x;');
225 TestAll('x = 1; let x;');
226 TestAll('x += 1; let x;');
227 TestAll('
[all...]
H A Dblock-conflicts.js59 function TestAll(expected,s,opt_e) { function
69 TestAll('Conflict', s);
70 TestAll('Conflict', 'eval("' + s + '")');
75 TestAll('NoConflict', s, "'NoConflict'");
76 TestAll('NoConflict', 'eval("' + s + '")', "'NoConflict'");
/external/v8/test/mjsunit/
H A Dconst-redecl.js96 function TestAll(expected,s,opt_e) { function
109 TestAll("TypeError", def0 +'; ' + def1);
111 TestAll("TypeError", 'eval("' + def0 + '; ' + def1 + '")');
113 TestAll("TypeError", 'eval("' + def0 +'"); ' + def1);
115 TestAll("TypeError", def0 + '; eval("' + def1 + '")');
117 TestAll("TypeError", 'eval("' + def0 +'"); eval("' + def1 + '")');
215 TestAll(0, loop, "x");
216 TestAll(0, "var a,b,c,d,e,f,g,h; " + loop, "x");
220 TestAll(87, "with ({x:42}) { const x = 87; }", "x");
221 TestAll(undefine
[all...]

Completed in 76 milliseconds