File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
jerry-core/ecma/builtin-objects Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ ecma_builtin_date_prototype_to_time_string (ecma_value_t this_arg) /**< this arg
299
299
static ecma_completion_value_t
300
300
ecma_builtin_date_prototype_to_locale_string (ecma_value_t this_arg) /* *< this argument */
301
301
{
302
- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
302
+ return ecma_builtin_date_prototype_to_string (this_arg);
303
303
} /* ecma_builtin_date_prototype_to_locale_string */
304
304
305
305
/* *
@@ -314,7 +314,7 @@ ecma_builtin_date_prototype_to_locale_string (ecma_value_t this_arg) /**< this a
314
314
static ecma_completion_value_t
315
315
ecma_builtin_date_prototype_to_locale_date_string (ecma_value_t this_arg) /* *< this argument */
316
316
{
317
- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
317
+ return ecma_builtin_date_prototype_to_date_string (this_arg);
318
318
} /* ecma_builtin_date_prototype_to_locale_date_string */
319
319
320
320
/* *
@@ -329,7 +329,7 @@ ecma_builtin_date_prototype_to_locale_date_string (ecma_value_t this_arg) /**< t
329
329
static ecma_completion_value_t
330
330
ecma_builtin_date_prototype_to_locale_time_string (ecma_value_t this_arg) /* *< this argument */
331
331
{
332
- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
332
+ return ecma_builtin_date_prototype_to_time_string (this_arg);
333
333
} /* ecma_builtin_date_prototype_to_locale_time_string */
334
334
335
335
/* *
You can’t perform that action at this time.
0 commit comments