- Timestamp:
- 02/08/08 21:17:06 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/fast/js/function-toString-parentheses-expected.txt
r29815 r30105 482 482 PASS compileAndSerializeLeftmostTest('(function () { })()') is '(function () { })()' 483 483 PASS compileAndSerializeLeftmostTest('x = function () { }') is 'x = function () { }' 484 PASS compileAndSerializeLeftmostTest('var a') is 'var a' 485 PASS compileAndSerializeLeftmostTest('var a = 1') is 'var a = 1' 486 PASS compileAndSerializeLeftmostTest('var a, b') is 'var a, b' 487 PASS compileAndSerializeLeftmostTest('var a = 1, b = 2') is 'var a = 1, b = 2' 488 PASS compileAndSerializeLeftmostTest('var a, b, c') is 'var a, b, c' 489 PASS compileAndSerializeLeftmostTest('var a = 1, b = 2, c = 3') is 'var a = 1, b = 2, c = 3' 484 490 PASS successfullyParsed is true 485 491