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.9/S11.4.9_A1.js michael@0: * @description Checking by using eval michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (eval("!\u0009true") !== false) { michael@0: $ERROR('#true: !\\u0009true === false'); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (eval("!\u000Btrue") !== false) { michael@0: $ERROR('#2: !\\u000Btrue === false'); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (eval("!\u000Ctrue") !== false) { michael@0: $ERROR('#3: !\\u000Ctrue === false'); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (eval("!\u0020true") !== false) { michael@0: $ERROR('#4: !\\u0020 === false'); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (eval("!\u00A0true") !== false) { michael@0: $ERROR('#5: !\\u00A0true === false'); michael@0: } michael@0: michael@0: //CHECK#6 michael@0: if (eval("!\u000Atrue") !== false) { michael@0: $ERROR('#6: !\\u000Atrue === false'); michael@0: } michael@0: michael@0: //CHECK#7 michael@0: if (eval("!\u000Dtrue") !== false) { michael@0: $ERROR('#7: !\\u000Dtrue === false'); michael@0: } michael@0: michael@0: //CHECK#8 michael@0: if (eval("!\u2028true") !== false) { michael@0: $ERROR('#8: !\\u2028true === false'); michael@0: } michael@0: michael@0: //CHECK#9 michael@0: if (eval("!\u2029true") !== false) { michael@0: $ERROR('#9: !\\u2029true === false'); michael@0: } michael@0: michael@0: //CHECK#10 michael@0: if (eval("!\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029true") !== false) { michael@0: $ERROR('#10: !\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029true === false'); michael@0: } michael@0: