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: function checkSyntaxError(code) { michael@0: var error; michael@0: try { michael@0: eval(code); michael@0: } catch (e) { michael@0: error = e; michael@0: } michael@0: assertEq(error.name, 'SyntaxError'); michael@0: } michael@0: michael@0: checkSyntaxError('"use strict"; *'); michael@0: checkSyntaxError('"use strict"; @7');