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.8/S11.4.8_A1.js michael@0: * @description Checking by using eval michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (eval("~\u00090") !== -1) { michael@0: $ERROR('#0: ~\\u00090 === -1'); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (eval("~\u000B0") !== -1) { michael@0: $ERROR('#2: ~\\u000B0 === -1'); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (eval("~\u000C0") !== -1) { michael@0: $ERROR('#3: ~\\u000C0 === -1'); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (eval("~\u00200") !== -1) { michael@0: $ERROR('#4: ~\\u0020 === -1'); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (eval("~\u00A00") !== -1) { michael@0: $ERROR('#5: ~\\u00A00 === -1'); michael@0: } michael@0: michael@0: //CHECK#6 michael@0: if (eval("~\u000A0") !== -1) { michael@0: $ERROR('#6: ~\\u000A0 === -1'); michael@0: } michael@0: michael@0: //CHECK#7 michael@0: if (eval("~\u000D0") !== -1) { michael@0: $ERROR('#7: ~\\u000D0 === -1'); michael@0: } michael@0: michael@0: //CHECK#8 michael@0: if (eval("~\u20280") !== -1) { michael@0: $ERROR('#8: ~\\u20280 === -1'); michael@0: } michael@0: michael@0: //CHECK#9 michael@0: if (eval("~\u20290") !== -1) { michael@0: $ERROR('#9: ~\\u20290 === -1'); michael@0: } michael@0: michael@0: //CHECK#10 michael@0: if (eval("~\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u20290") !== -1) { michael@0: $ERROR('#10: ~\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u20290 === -1'); michael@0: } michael@0: