michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * White Space and Line Terminator between "void" and UnaryExpression are allowed michael@0: * michael@0: * @path ch11/11.4/11.4.2/S11.4.2_A1.js michael@0: * @description Checking by using eval michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (eval("void\u00090") !== undefined) { michael@0: $ERROR('#1: void\\u00090 === undefined'); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (eval("void\u000B0") !== undefined) { michael@0: $ERROR('#2: void\\u000B0 === undefined'); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (eval("void\u000C0") !== undefined) { michael@0: $ERROR('#3: void\\u000C0 === undefined'); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (eval("void\u00200") !== undefined) { michael@0: $ERROR('#4: void\\u00200 === undefined'); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (eval("void\u00A00") !== undefined) { michael@0: $ERROR('#5: void\\u00A00 === undefined'); michael@0: } michael@0: michael@0: //CHECK#6 michael@0: if (eval("void\u000A0") !== undefined) { michael@0: $ERROR('#6: void\\u000A0 === undefined'); michael@0: } michael@0: michael@0: //CHECK#7 michael@0: if (eval("void\u000D0") !== undefined) { michael@0: $ERROR('#7: void\\u000D0 === undefined'); michael@0: } michael@0: michael@0: //CHECK#8 michael@0: if (eval("void\u20280") !== undefined) { michael@0: $ERROR('#8: void\\u20280 === undefined'); michael@0: } michael@0: michael@0: //CHECK#9 michael@0: if (eval("void\u20290") !== undefined) { michael@0: $ERROR('#9: void\\u20290 === undefined'); michael@0: } michael@0: michael@0: //CHECK#10 michael@0: if (eval("void\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u20290") !== undefined) { michael@0: $ERROR('#10: void\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u20290 === undefined'); michael@0: } michael@0: