2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: "CharacterEscape :: c ControlLetter"
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.10.2.10_A2.1_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: "ControlLetter :: a - z"
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#0061-007A
|
2018-02-09 17:35:37 +01:00
|
|
|
var result = true;
|
2015-04-29 17:42:48 +02:00
|
|
|
for (var alpha = 0x0061; alpha <= 0x007A; alpha++) {
|
|
|
|
var str = String.fromCharCode(alpha % 32);
|
2018-02-09 17:35:37 +01:00
|
|
|
var arr = (new RegExp("\\c" + String.fromCharCode(alpha))).exec(str);
|
2011-09-07 08:35:18 +02:00
|
|
|
if ((arr === null) || (arr[0] !== str)) {
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result !== true) {
|
|
|
|
$ERROR('#1: CharacterEscape :: c a - z');
|
2014-07-22 01:09:02 +02:00
|
|
|
}
|