Index: test/webkit/fast/js/modify-non-references-expected.txt |
diff --git a/test/webkit/fast/js/modify-non-references-expected.txt b/test/webkit/fast/js/modify-non-references-expected.txt |
index ea20652c04ed02d0941bdabb3eda07300a3b5aff..b8c692aa859c1ad59e853652620e491e909656e2 100644 |
--- a/test/webkit/fast/js/modify-non-references-expected.txt |
+++ b/test/webkit/fast/js/modify-non-references-expected.txt |
@@ -21,12 +21,12 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-PASS function f() { g()++; } f.toString() is 'function f() { g()++; }' |
-PASS function f() { g()--; } f.toString() is 'function f() { g()--; }' |
-PASS function f() { ++g(); } f.toString() is 'function f() { ++g(); }' |
-PASS function f() { --g(); } f.toString() is 'function f() { --g(); }' |
-PASS function f() { g() = 1; } f.toString() is 'function f() { g() = 1; }' |
-PASS function f() { g() += 1; } f.toString() is 'function f() { g() += 1; }' |
+FAIL function f() { g()++; } f.toString() should be function f() { g()++; }. Threw exception ReferenceError: Invalid left-hand side expression in postfix operation |
+FAIL function f() { g()--; } f.toString() should be function f() { g()--; }. Threw exception ReferenceError: Invalid left-hand side expression in postfix operation |
+FAIL function f() { ++g(); } f.toString() should be function f() { ++g(); }. Threw exception ReferenceError: Invalid left-hand side expression in prefix operation |
+FAIL function f() { --g(); } f.toString() should be function f() { --g(); }. Threw exception ReferenceError: Invalid left-hand side expression in prefix operation |
+FAIL function f() { g() = 1; } f.toString() should be function f() { g() = 1; }. Threw exception ReferenceError: Invalid left-hand side in assignment |
+FAIL function f() { g() += 1; } f.toString() should be function f() { g() += 1; }. Threw exception ReferenceError: Invalid left-hand side in assignment |
FAIL g()++ should throw ReferenceError: Postfix ++ operator applied to value that is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in postfix operation. |
FAIL g()-- should throw ReferenceError: Postfix -- operator applied to value that is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in postfix operation. |
FAIL ++g() should throw ReferenceError: Prefix ++ operator applied to value that is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in prefix operation. |