Home
last modified time | relevance | path

Searched refs:lastindex_num (Results 1 – 1 of 1) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c1699 ecma_number_t lastindex_num; in ecma_regexp_exec_helper() local
1700 ret_value = ecma_op_to_integer (lastindex_value, &lastindex_num); in ecma_regexp_exec_helper()
1710 if (lastindex_num < 0.0f) in ecma_regexp_exec_helper()
1713 lastindex_num = 0.0f; in ecma_regexp_exec_helper()
1715 lastindex_num = input_length + 1; in ecma_regexp_exec_helper()
1718 index = ecma_number_to_uint32 (lastindex_num); in ecma_regexp_exec_helper()