Searched refs:compileAndSerializeLeftmostTest (Results 1 – 2 of 2) sorted by relevance
| /external/chromium_org/v8/test/webkit/fast/js/ |
| D | function-toString-parentheses-expected.txt | 503 PASS compileAndSerializeLeftmostTest('({ }).x') is '({ }).x' 504 PASS compileAndSerializeLeftmostTest('x = { }') is 'x = { }' 505 PASS compileAndSerializeLeftmostTest('(function () { })()') is '(function () { })()' 506 PASS compileAndSerializeLeftmostTest('x = function () { }') is 'x = function () { }' 507 PASS compileAndSerializeLeftmostTest('var a') is 'var a' 508 PASS compileAndSerializeLeftmostTest('var a = 1') is 'var a = 1' 509 PASS compileAndSerializeLeftmostTest('var a, b') is 'var a, b' 510 PASS compileAndSerializeLeftmostTest('var a = 1, b = 2') is 'var a = 1, b = 2' 511 PASS compileAndSerializeLeftmostTest('var a, b, c') is 'var a, b, c' 512 PASS compileAndSerializeLeftmostTest('var a = 1, b = 2, c = 3') is 'var a = 1, b = 2, c = 3' [all …]
|
| D | function-toString-parentheses.js | 39 function compileAndSerializeLeftmostTest(expression) function
|