JavaScript Test - tweak decompilation, bug 352202

git-svn-id: svn://10.0.0.236/trunk@212998 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bclary%bclary.com
2006-10-02 10:18:38 +00:00
parent f544d49980
commit 6bc8cf0274

View File

@@ -54,7 +54,7 @@ function test()
var f;
f = function() { for ((~x)["y"] in z) { } }
expect = 'function() { for ((~x)["y"] in z) { } }';
expect = 'function() { for ((~x).y in z) { } }';
actual = f + '';
compareSource(expect, actual, summary);