Home | History | Annotate | Download | only in js

Lines Matching full:pass

24 PASS function f() { g()++; } f.toString() is 'function f() { g()++; }'
25 PASS function f() { g()--; } f.toString() is 'function f() { g()--; }'
26 PASS function f() { ++g(); } f.toString() is 'function f() { ++g(); }'
27 PASS function f() { --g(); } f.toString() is 'function f() { --g(); }'
28 PASS function f() { g() = 1; } f.toString() is 'function f() { g() = 1; }'
29 PASS function f() { g() += 1; } f.toString() is 'function f() { g() += 1; }'
30 PASS Number()++ threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
31 PASS Number()-- threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
32 PASS ++Number() threw exception ReferenceError: Invalid left-hand side expression in prefix operation.
33 PASS --Number() threw exception ReferenceError: Invalid left-hand side expression in prefix operation.
34 PASS Number() = 1 threw exception ReferenceError: Invalid left-hand side in assignment.
35 PASS Number() += 1 threw exception ReferenceError: Invalid left-hand side in assignment.
36 PASS successfullyParsed is true