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
299299static ecma_completion_value_t
300300ecma_builtin_date_prototype_to_locale_string (ecma_value_t this_arg) /* *< this argument */
301301{
302- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
302+ return ecma_builtin_date_prototype_to_string (this_arg);
303303} /* ecma_builtin_date_prototype_to_locale_string */
304304
305305/* *
@@ -314,7 +314,7 @@ ecma_builtin_date_prototype_to_locale_string (ecma_value_t this_arg) /**< this a
314314static ecma_completion_value_t
315315ecma_builtin_date_prototype_to_locale_date_string (ecma_value_t this_arg) /* *< this argument */
316316{
317- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
317+ return ecma_builtin_date_prototype_to_date_string (this_arg);
318318} /* ecma_builtin_date_prototype_to_locale_date_string */
319319
320320/* *
@@ -329,7 +329,7 @@ ecma_builtin_date_prototype_to_locale_date_string (ecma_value_t this_arg) /**< t
329329static ecma_completion_value_t
330330ecma_builtin_date_prototype_to_locale_time_string (ecma_value_t this_arg) /* *< this argument */
331331{
332- ECMA_BUILTIN_CP_UNIMPLEMENTED (this_arg);
332+ return ecma_builtin_date_prototype_to_time_string (this_arg);
333333} /* ecma_builtin_date_prototype_to_locale_time_string */
334334
335335/* *
You can’t perform that action at this time.
0 commit comments