(c: number)
| 439 | } |
| 440 | |
| 441 | private static _isValidChar(c: number): boolean { |
| 442 | return ( |
| 443 | (c >= XmlParser.CharCodeLowerA && c <= XmlParser.CharCodeLowerZ) || |
| 444 | (c >= XmlParser.CharCodeUpperA && c <= XmlParser.CharCodeUpperZ) || |
| 445 | (c >= XmlParser.CharCode0 && c <= XmlParser.CharCode9) || |
| 446 | c === XmlParser.CharCodeColon || |
| 447 | c === XmlParser.CharCodeDot || |
| 448 | c === XmlParser.CharCodeUnderscore || |
| 449 | c === XmlParser.CharCodeMinus |
| 450 | ); |
| 451 | } |
| 452 | } |