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 "+" and UnaryExpression are allowed michael@0: * michael@0: * @path ch11/11.4/11.4.6/S11.4.6_A1.js michael@0: * @description Checking by using eval michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (eval("+\u00091") !== 1) { michael@0: $ERROR('#1: +\\u00091 === 1'); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (eval("+\u000B1") !== 1) { michael@0: $ERROR('#2: +\\u000B1 === 1'); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (eval("+\u000C1") !== 1) { michael@0: $ERROR('#3: +\\u000C1 === 1'); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (eval("+\u00201") !== 1) { michael@0: $ERROR('#4: +\\u0020 === 1'); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (eval("+\u00A01") !== 1) { michael@0: $ERROR('#5: +\\u00A01 === 1'); michael@0: } michael@0: michael@0: //CHECK#6 michael@0: if (eval("+\u000A1") !== 1) { michael@0: $ERROR('#6: +\\u000A1 === 1'); michael@0: } michael@0: michael@0: //CHECK#7 michael@0: if (eval("+\u000D1") !== 1) { michael@0: $ERROR('#7: +\\u000D1 === 1'); michael@0: } michael@0: michael@0: //CHECK#8 michael@0: if (eval("+\u20281") !== 1) { michael@0: $ERROR('#8: +\\u20281 === 1'); michael@0: } michael@0: michael@0: //CHECK#9 michael@0: if (eval("+\u20291") !== 1) { michael@0: $ERROR('#9: +\\u20291 === 1'); michael@0: } michael@0: michael@0: //CHECK#10 michael@0: if (eval("+\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u20291") !== 1) { michael@0: $ERROR('#10: +\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u20291 === 1'); michael@0: } michael@0: