Fix goto labels indentation (#4818)
JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik robert.fancsik@h-lab.eu
This commit is contained in:
@@ -521,7 +521,7 @@ ecma_module_resolve_export (ecma_module_t *const module_p, /**< base module */
|
||||
star_export_p = star_export_p->next_p;
|
||||
}
|
||||
|
||||
next_iteration:
|
||||
next_iteration:
|
||||
current_set_p = current_set_p->next_p;
|
||||
} while (current_set_p != NULL);
|
||||
|
||||
|
||||
@@ -668,7 +668,7 @@ ecma_builtin_array_prototype_object_reverse (ecma_value_t this_arg, /**< this ar
|
||||
|
||||
ret_value = ECMA_VALUE_EMPTY;
|
||||
|
||||
clean_up:
|
||||
clean_up:
|
||||
ecma_free_value (upper_value);
|
||||
ecma_free_value (lower_value);
|
||||
ecma_deref_ecma_string (lower_str_p);
|
||||
|
||||
@@ -254,7 +254,7 @@ ecma_builtin_array_object_from (ecma_value_t this_arg, /**< 'this' argument */
|
||||
k++;
|
||||
}
|
||||
|
||||
iterator_cleanup:
|
||||
iterator_cleanup:
|
||||
ecma_free_value (iterator);
|
||||
ecma_free_value (next_method);
|
||||
ecma_deref_object (array_obj_p);
|
||||
|
||||
@@ -1483,7 +1483,7 @@ ecma_regexp_run (ecma_regexp_ctx_t *re_ctx_p, /**< RegExp matcher context */
|
||||
|
||||
goto fail;
|
||||
|
||||
class_found:
|
||||
class_found:
|
||||
if (flags & RE_CLASS_INVERT)
|
||||
{
|
||||
goto fail;
|
||||
@@ -1565,7 +1565,7 @@ ecma_regexp_run (ecma_regexp_ctx_t *re_ctx_p, /**< RegExp matcher context */
|
||||
}
|
||||
|
||||
JERRY_UNREACHABLE ();
|
||||
fail:
|
||||
fail:
|
||||
bc_p = next_alternative_p;
|
||||
|
||||
if (bc_p == NULL || *bc_p++ != RE_OP_ALTERNATIVE_NEXT)
|
||||
|
||||
Reference in New Issue
Block a user