blob: 01744f6a8e0e6fd0a25f974d0b2528c0f6340206 [file] [log] [blame]
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
if (typeof options == "function") {
var opts = options();
if (!/\bstrict_mode\b/.test(opts))
options("strict_mode");
}
var ok = false;
try {
eval('foo = true;');
} catch (e) {
if (/^ReferenceError:/.test(e.toString()))
ok = true;
}
if (ok)
reportCompare(0, 0, "ok");
else
reportCompare(true, false, "this should have thrown a ReferenceError");