// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * CharacterEscapeSequnce :: NonEscapeSequence * * @path ch07/7.8/7.8.4/S7.8.4_A4.2_T4.js * @description NonEscapeSequence :: ENGLISH SMALL ALPHABET */ //CHECK#a-z without b, f, n, r, t, v, x, u if ("a" !== "\a") { $ERROR('#a'); } if ("c" !== "\c") { $ERROR('#c'); } if ("d" !== "\d") { $ERROR('#d'); } if ("e" !== "\e") { $ERROR('#e'); } if ("g" !== "\g") { $ERROR('#g'); } if ("h" !== "\h") { $ERROR('#h'); } if ("i" !== "\i") { $ERROR('#i'); } if ("j" !== "\j") { $ERROR('#j'); } if ("k" !== "\k") { $ERROR('#k'); } if ("l" !== "\l") { $ERROR('#l'); } if ("m" !== "\m") { $ERROR('#m'); } if ("o" !== "\o") { $ERROR('#o'); } if ("p" !== "\p") { $ERROR('#p'); } if ("q" !== "\q") { $ERROR('#q'); } if ("s" !== "\s") { $ERROR('#s'); } if ("w" !== "\w") { $ERROR('#w'); } if ("y" !== "\y") { $ERROR('#y'); } if ("z" !== "\z") { $ERROR('#z'); }