Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | // Copyright 2009 the Sputnik authors. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Single line comments can contain any Unicode character without Line Terminators |
michael@0 | 6 | * |
michael@0 | 7 | * @path ch07/7.4/S7.4_A5.js |
michael@0 | 8 | * @description //var " + xx + "yy = -1", insert instead of xx all Unicode characters |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | //CHECK |
michael@0 | 12 | var errorCount = 0; |
michael@0 | 13 | var count = 0; |
michael@0 | 14 | var hex = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"]; |
michael@0 | 15 | for (var i1 = 0; i1 < 16; i1++) { |
michael@0 | 16 | for (var i2 = 0; i2 < 16; i2++) { |
michael@0 | 17 | for (var i3 = 0; i3 < 16; i3++) { |
michael@0 | 18 | for (var i4 = 0; i4 < 16; i4++) { |
michael@0 | 19 | try { |
michael@0 | 20 | var uu = hex[i1] + hex[i2] + hex[i3] + hex[i4]; |
michael@0 | 21 | var xx = String.fromCharCode("0x" + uu); |
michael@0 | 22 | var LineTerminators = ((uu === "000A") || (uu === "000D") || (uu === "2028") || (uu === "2029")); |
michael@0 | 23 | var yy = 0; |
michael@0 | 24 | eval("//var " + xx + "yy = -1"); |
michael@0 | 25 | if (LineTerminators !== true) { |
michael@0 | 26 | if (yy !== 0) { |
michael@0 | 27 | $ERROR('#' + uu + ' '); |
michael@0 | 28 | errorCount++; |
michael@0 | 29 | } |
michael@0 | 30 | } else { |
michael@0 | 31 | if (yy !== -1) { |
michael@0 | 32 | $ERROR('#' + uu + ' '); |
michael@0 | 33 | errorCount++; |
michael@0 | 34 | } |
michael@0 | 35 | } |
michael@0 | 36 | } catch (e){ |
michael@0 | 37 | $ERROR('#' + uu + ' '); |
michael@0 | 38 | errorCount++; |
michael@0 | 39 | } |
michael@0 | 40 | count++; |
michael@0 | 41 | } |
michael@0 | 42 | } |
michael@0 | 43 | } |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | if (errorCount > 0) { |
michael@0 | 47 | $ERROR('Total error: ' + errorCount + ' bad Unicode character in ' + count); |
michael@0 | 48 | } |
michael@0 | 49 |