Add ecma_char_is_word_char helper (part of IsWordChar abstract operation, ECMA-262 v5, 15.10.2.6); move hex_to_int from lexer to jerry-core/ecma/base/ecma-helpers-char.cpp, renaming it to ecma_char_hex_to_int.
JerryScript-DCO-1.0-Signed-off-by: Szilard Ledan szledan.u-szeged@partner.samsung.com JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
@@ -62,6 +62,64 @@ ecma_char_is_line_terminator (ecma_char_t c) /**< character value */
|
||||
|| ecma_char_is_new_line (c));
|
||||
} /* ecma_char_is_line_terminator */
|
||||
|
||||
/**
|
||||
* Check if specified character is a word character (part of IsWordChar abstract operation)
|
||||
*
|
||||
* See also: ECMA-262 v5, 15.10.2.6 (IsWordChar)
|
||||
*
|
||||
* @return true - if the character is a word character
|
||||
* false - otherwise.
|
||||
*/
|
||||
bool
|
||||
ecma_char_is_word_char (ecma_char_t c) /**< character value */
|
||||
{
|
||||
if ((c >= 'a' && c <= 'z')
|
||||
|| (c >= 'A' && c <= 'Z')
|
||||
|| (c >= '0' && c <= '9')
|
||||
|| c == '_')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
} /* ecma_char_is_word_char */
|
||||
|
||||
/**
|
||||
* Convert a hex character to an unsigned integer
|
||||
*
|
||||
* @return digit value, corresponding to the hex char
|
||||
*/
|
||||
uint32_t
|
||||
ecma_char_hex_to_int (ecma_char_t hex) /**< [0-9A-Fa-f] character value */
|
||||
{
|
||||
switch (hex)
|
||||
{
|
||||
case '0': return 0x0;
|
||||
case '1': return 0x1;
|
||||
case '2': return 0x2;
|
||||
case '3': return 0x3;
|
||||
case '4': return 0x4;
|
||||
case '5': return 0x5;
|
||||
case '6': return 0x6;
|
||||
case '7': return 0x7;
|
||||
case '8': return 0x8;
|
||||
case '9': return 0x9;
|
||||
case 'a':
|
||||
case 'A': return 0xA;
|
||||
case 'b':
|
||||
case 'B': return 0xB;
|
||||
case 'c':
|
||||
case 'C': return 0xC;
|
||||
case 'd':
|
||||
case 'D': return 0xD;
|
||||
case 'e':
|
||||
case 'E': return 0xE;
|
||||
case 'f':
|
||||
case 'F': return 0xF;
|
||||
default: JERRY_UNREACHABLE ();
|
||||
}
|
||||
} /* ecma_char_hex_to_int */
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
|
||||
Reference in New Issue
Block a user