michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: var o = {} michael@0: try { michael@0: eval('o.\\u82f1 = 42;'); michael@0: } michael@0: catch (e) { michael@0: assertEq('should not fail', true); michael@0: } michael@0: assertEq(o['\u82f1'], 42); michael@0: michael@0: if (typeof reportCompare == 'function') michael@0: reportCompare(true, true);