HomeSort by relevance Sort by last modified time
    Searched defs:TestAll (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/v8/test/mjsunit/harmony/
block-conflicts.js 60 function TestAll(expected,s,opt_e) {
70 TestAll('Conflict', s);
71 TestAll('Conflict', 'eval("' + s + '")');
76 TestAll('NoConflict', s, "'NoConflict'");
77 TestAll('NoConflict', 'eval("' + s + '")', "'NoConflict'");
block-let-semantics.js 57 function TestAll(s) {
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('++x; let x;')
    [all...]
block-let-crankshaft.js 211 function TestAll(s) {
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('++x; let x;')
    [all...]
  /external/v8/test/mjsunit/harmony/
block-conflicts.js 59 function TestAll(expected,s,opt_e) {
69 TestAll('Conflict', s);
70 TestAll('Conflict', 'eval("' + s + '")');
75 TestAll('NoConflict', s, "'NoConflict'");
76 TestAll('NoConflict', 'eval("' + s + '")', "'NoConflict'");
block-let-semantics.js 57 function TestAll(s) {
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('++x; let x;')
    [all...]
block-let-crankshaft.js 211 function TestAll(s) {
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('++x; let x;')
    [all...]
  /external/chromium_org/v8/test/mjsunit/
const-redecl.js 96 function TestAll(expected,s,opt_e) {
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(undefined, "with ({x:42}) { const x; }", "x")
    [all...]
  /external/v8/test/mjsunit/
const-redecl.js 96 function TestAll(expected,s,opt_e) {
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(undefined, "with ({x:42}) { const x; }", "x")
    [all...]

Completed in 2005 milliseconds