js: Rename the --disable-string-quotes flag to --raw-strings
Some checks are pending
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Build Dev Container Image / build (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

Since it does more than removing the quotes by escaping the string too
It makes sense to change the name of the flag to something more close
to what it's really doing.
This commit is contained in:
Lucien Fiorini 2025-06-02 15:38:08 +02:00 committed by Andrew Kaster
commit 8b1f1ae87a
Notes: github-actions[bot] 2025-07-10 00:31:20 +00:00
3 changed files with 7 additions and 7 deletions

View file

@ -1038,18 +1038,18 @@ ErrorOr<void> print_value(JS::PrintContext& print_context, JS::Value value, Hash
else if (value.is_undefined())
TRY(js_out(print_context, "\033[34;1m"));
if (value.is_string() && !print_context.disable_string_quotes)
if (value.is_string() && !print_context.raw_strings)
TRY(js_out(print_context, "\""));
else if (value.is_negative_zero())
TRY(js_out(print_context, "-"));
auto contents = value.to_string_without_side_effects();
if (value.is_string() && !print_context.disable_string_quotes)
if (value.is_string() && !print_context.raw_strings)
TRY(js_out(print_context, "{}", TRY(escape_for_string_literal(contents))));
else
TRY(js_out(print_context, "{}", contents));
if (value.is_string() && !print_context.disable_string_quotes)
if (value.is_string() && !print_context.raw_strings)
TRY(js_out(print_context, "\""));
TRY(js_out(print_context, "\033[0m"));
return {};