S7.8.4_A6.1_T2.js (847B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: "EscapeSequence :: HexEscapeSequence :: x HexDigit HexDigit" 6 es5id: 7.8.4_A6.1_T2 7 description: "HexEscapeSequence :: ENGLISH CAPITAL ALPHABET" 8 ---*/ 9 10 //CHECK#A-Z 11 var hex = ["\x41", "\x42", "\x43", "\x44", "\x45", "\x46", "\x47", "\x48", "\x49", "\x4A", "\x4B", "\x4C", "\x4D", "\x4E", "\x4F", "\x50", "\x51", "\x52", "\x53", "\x54", "\x55", "\x56", "\x57", "\x58", "\x59", "\x5A"]; 12 var character = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]; 13 for (var index = 0; index <= 25; index++) { 14 if (hex[index] !== character[index]) { 15 throw new Test262Error('#' + character[index] + ' '); 16 } 17 } 18 19 reportCompare(0, 0);