Fix vera++ rule to find expressions without space after parentheses (#3776)
Regex didn't include some characters that may occur after ')' JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
@@ -728,7 +728,7 @@ jerry_arg_to_double_or_bool_t (jerryx_arg_js_iterator_t *js_arg_iter_p,
|
||||
* the stack more times than there are actual stack values to ensure
|
||||
* that the restore function doesn't produce an error. */
|
||||
double_or_bool_t *destination = c_arg_p->dest;
|
||||
uintptr_t *extra_info = (uintptr_t *)(c_arg_p->extra_info);
|
||||
uintptr_t *extra_info = (uintptr_t *) (c_arg_p->extra_info);
|
||||
jerryx_arg_t conversion_function;
|
||||
jerry_value_t conversion_result;
|
||||
jerry_value_t restore_result;
|
||||
|
||||
Reference in New Issue
Block a user