Files
ladybird/Userland/Libraries/LibJS
Linus Groh 44e70d1bc0 LibJS+LibWeb: Let WrapperGenerator deal with legacy_null_to_empty_string
This concept is not present in ECMAScript, and it bothers me every time
I see it.
It's only used by WrapperGenerator, and even there only relevant in two
places, so let's fully remove it from LibJS and use a simple ternary
expression instead:

    cpp_name = js_name.is_null() && legacy_null_to_empty_string
        ? String::empty()
        : js_name.to_string(global_object);
2021-10-11 23:36:03 +01:00
..
2021-09-14 21:41:51 +02:00
2021-09-14 21:41:51 +02:00
2021-10-08 19:56:02 +03:30
2021-10-06 23:52:40 +01:00