mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
This patch fixes the following error with Clang-6.0
```
jerryscript/jerry-core/api/jerry.c:1527:71: error: implicit conversion loses integer precision:
'jerry_regexp_flags_t' to 'uint16_t' (aka 'unsigned short') [-Werror,-Wconversion]
jerry_value_t ret_val = ecma_op_create_regexp_object (ecma_pattern, flags);
```
Also change the `jerry_create_regexp` and `jerry_create_regexp_sz` functions' `flags` parameter to `uint16_t` since the values created with `bitwise inclusive OR` are not part of the enum.
JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
72 lines
2.9 KiB
C
72 lines
2.9 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "jerryscript.h"
|
|
|
|
#include "test-common.h"
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
TEST_INIT ();
|
|
jerry_init (JERRY_INIT_EMPTY);
|
|
|
|
jerry_value_t global_obj_val = jerry_get_global_object ();
|
|
|
|
jerry_char_t pattern[] = "[^.]+";
|
|
uint16_t flags = JERRY_REGEXP_FLAG_GLOBAL | JERRY_REGEXP_FLAG_MULTILINE;
|
|
jerry_value_t regex_obj = jerry_create_regexp (pattern, flags);
|
|
TEST_ASSERT (jerry_value_is_object (regex_obj));
|
|
|
|
const jerry_char_t func_resource[] = "unknown";
|
|
const jerry_char_t func_arg_list[] = "regex";
|
|
const jerry_char_t func_src[] = "return [regex.exec('something.domain.com'), regex.multiline, regex.global];";
|
|
jerry_value_t func_val = jerry_parse_function (func_resource,
|
|
sizeof (func_resource) - 1,
|
|
func_arg_list,
|
|
sizeof (func_arg_list) - 1,
|
|
func_src,
|
|
sizeof (func_src) - 1,
|
|
JERRY_PARSE_NO_OPTS);
|
|
|
|
jerry_value_t res = jerry_call_function (func_val, global_obj_val, ®ex_obj, 1);
|
|
jerry_value_t regex_res = jerry_get_property_by_index (res, 0);
|
|
jerry_value_t regex_res_str = jerry_get_property_by_index (regex_res, 0);
|
|
jerry_value_t is_multiline = jerry_get_property_by_index (res, 1);
|
|
jerry_value_t is_global = jerry_get_property_by_index (res, 2);
|
|
|
|
jerry_size_t str_size = jerry_get_string_size (regex_res_str);
|
|
jerry_char_t res_buff[str_size];
|
|
jerry_size_t res_size = jerry_string_to_char_buffer (regex_res_str, res_buff, str_size);
|
|
|
|
const char expected_result[] = "something";
|
|
TEST_ASSERT (res_size == (sizeof (expected_result) - 1));
|
|
TEST_ASSERT (strncmp (expected_result, (const char *) res_buff, res_size) == 0);
|
|
TEST_ASSERT (jerry_get_boolean_value (is_multiline));
|
|
TEST_ASSERT (jerry_get_boolean_value (is_global));
|
|
|
|
jerry_release_value (regex_obj);
|
|
jerry_release_value (res);
|
|
jerry_release_value (func_val);
|
|
jerry_release_value (regex_res);
|
|
jerry_release_value (regex_res_str);
|
|
jerry_release_value (is_multiline);
|
|
jerry_release_value (is_global);
|
|
jerry_release_value (global_obj_val);
|
|
|
|
jerry_cleanup ();
|
|
return 0;
|
|
} /* main */
|