2020-03-07 18:42:11 +00:00
|
|
|
/*
|
2021-06-03 08:46:30 +00:00
|
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
2022-05-05 18:50:32 +00:00
|
|
|
* Copyright (c) 2020-2022, Linus Groh <linusg@serenityos.org>
|
2020-03-07 18:42:11 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-07 18:42:11 +00:00
|
|
|
*/
|
|
|
|
|
2021-05-15 10:34:40 +00:00
|
|
|
#include <AK/Assertions.h>
|
2020-03-12 09:51:41 +00:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-11-09 19:10:59 +00:00
|
|
|
#include <AK/Format.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <AK/NonnullOwnPtr.h>
|
2020-03-25 22:10:29 +00:00
|
|
|
#include <AK/StringBuilder.h>
|
2020-03-12 09:51:41 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-06-06 17:51:02 +00:00
|
|
|
#include <LibCore/ConfigFile.h>
|
2020-03-12 09:51:41 +00:00
|
|
|
#include <LibCore/File.h>
|
2020-10-25 23:36:06 +00:00
|
|
|
#include <LibCore/StandardPaths.h>
|
2021-11-23 09:59:50 +00:00
|
|
|
#include <LibCore/System.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <LibJS/AST.h>
|
2021-06-09 02:19:58 +00:00
|
|
|
#include <LibJS/Bytecode/BasicBlock.h>
|
2021-06-03 08:46:30 +00:00
|
|
|
#include <LibJS/Bytecode/Generator.h>
|
|
|
|
#include <LibJS/Bytecode/Interpreter.h>
|
2021-06-13 16:10:20 +00:00
|
|
|
#include <LibJS/Bytecode/PassManager.h>
|
2020-05-04 14:09:05 +00:00
|
|
|
#include <LibJS/Console.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <LibJS/Interpreter.h>
|
2020-03-11 18:27:43 +00:00
|
|
|
#include <LibJS/Parser.h>
|
2020-03-26 11:26:11 +00:00
|
|
|
#include <LibJS/Runtime/Array.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/ArrayBuffer.h>
|
2022-05-05 18:50:32 +00:00
|
|
|
#include <LibJS/Runtime/AsyncGenerator.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/BooleanObject.h>
|
2022-08-28 13:20:06 +00:00
|
|
|
#include <LibJS/Runtime/ConsoleObject.h>
|
2021-06-13 22:47:08 +00:00
|
|
|
#include <LibJS/Runtime/DataView.h>
|
2020-03-31 17:43:45 +00:00
|
|
|
#include <LibJS/Runtime/Date.h>
|
2022-01-14 22:55:11 +00:00
|
|
|
#include <LibJS/Runtime/DatePrototype.h>
|
2021-09-24 20:40:38 +00:00
|
|
|
#include <LibJS/Runtime/ECMAScriptFunctionObject.h>
|
2020-04-02 07:54:15 +00:00
|
|
|
#include <LibJS/Runtime/Error.h>
|
2021-06-27 19:48:34 +00:00
|
|
|
#include <LibJS/Runtime/FunctionObject.h>
|
2022-05-05 18:50:32 +00:00
|
|
|
#include <LibJS/Runtime/GeneratorObject.h>
|
2020-04-01 16:53:28 +00:00
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
2021-09-07 13:47:00 +00:00
|
|
|
#include <LibJS/Runtime/Intl/Collator.h>
|
2021-11-28 23:05:32 +00:00
|
|
|
#include <LibJS/Runtime/Intl/DateTimeFormat.h>
|
2021-08-25 02:38:08 +00:00
|
|
|
#include <LibJS/Runtime/Intl/DisplayNames.h>
|
2022-06-30 19:20:41 +00:00
|
|
|
#include <LibJS/Runtime/Intl/DurationFormat.h>
|
2021-09-06 12:44:54 +00:00
|
|
|
#include <LibJS/Runtime/Intl/ListFormat.h>
|
2021-09-02 12:32:55 +00:00
|
|
|
#include <LibJS/Runtime/Intl/Locale.h>
|
2021-09-10 11:30:45 +00:00
|
|
|
#include <LibJS/Runtime/Intl/NumberFormat.h>
|
2022-01-28 18:23:30 +00:00
|
|
|
#include <LibJS/Runtime/Intl/PluralRules.h>
|
2022-01-25 17:05:20 +00:00
|
|
|
#include <LibJS/Runtime/Intl/RelativeTimeFormat.h>
|
2022-01-29 21:50:40 +00:00
|
|
|
#include <LibJS/Runtime/Intl/Segmenter.h>
|
2022-01-29 23:32:57 +00:00
|
|
|
#include <LibJS/Runtime/Intl/Segments.h>
|
2021-09-16 19:48:07 +00:00
|
|
|
#include <LibJS/Runtime/JSONObject.h>
|
2021-06-12 20:54:40 +00:00
|
|
|
#include <LibJS/Runtime/Map.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
#include <LibJS/Runtime/NumberObject.h>
|
2020-03-16 13:20:30 +00:00
|
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
#include <LibJS/Runtime/PrimitiveString.h>
|
2021-04-01 20:14:05 +00:00
|
|
|
#include <LibJS/Runtime/Promise.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/ProxyObject.h>
|
2020-06-03 23:05:49 +00:00
|
|
|
#include <LibJS/Runtime/RegExpObject.h>
|
2021-06-08 21:08:47 +00:00
|
|
|
#include <LibJS/Runtime/Set.h>
|
2021-10-13 21:05:27 +00:00
|
|
|
#include <LibJS/Runtime/ShadowRealm.h>
|
2020-04-02 17:32:21 +00:00
|
|
|
#include <LibJS/Runtime/Shape.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/StringObject.h>
|
2022-03-07 17:11:13 +00:00
|
|
|
#include <LibJS/Runtime/StringPrototype.h>
|
2021-07-14 20:59:49 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/Calendar.h>
|
2021-07-15 23:17:01 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/Duration.h>
|
2021-07-07 16:43:17 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/Instant.h>
|
2021-07-22 19:06:27 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/PlainDate.h>
|
2021-07-22 19:07:16 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/PlainDateTime.h>
|
2021-09-06 22:02:33 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/PlainMonthDay.h>
|
2021-07-28 18:29:45 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/PlainTime.h>
|
2021-09-06 21:57:25 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/PlainYearMonth.h>
|
2021-07-06 22:56:32 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/TimeZone.h>
|
2021-08-01 17:16:47 +00:00
|
|
|
#include <LibJS/Runtime/Temporal/ZonedDateTime.h>
|
2020-12-04 22:58:10 +00:00
|
|
|
#include <LibJS/Runtime/TypedArray.h>
|
2020-03-16 13:20:30 +00:00
|
|
|
#include <LibJS/Runtime/Value.h>
|
2022-06-30 18:59:24 +00:00
|
|
|
#include <LibJS/Runtime/WeakMap.h>
|
2022-06-30 19:00:20 +00:00
|
|
|
#include <LibJS/Runtime/WeakRef.h>
|
2022-06-30 19:00:00 +00:00
|
|
|
#include <LibJS/Runtime/WeakSet.h>
|
2022-01-16 12:16:04 +00:00
|
|
|
#include <LibJS/SourceTextModule.h>
|
2020-03-31 11:34:57 +00:00
|
|
|
#include <LibLine/Editor.h>
|
2021-11-22 19:25:30 +00:00
|
|
|
#include <LibMain/Main.h>
|
2022-04-03 13:31:04 +00:00
|
|
|
#include <LibTextCodec/Decoder.h>
|
2021-01-12 18:21:59 +00:00
|
|
|
#include <fcntl.h>
|
2020-04-11 09:09:10 +00:00
|
|
|
#include <signal.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <stdio.h>
|
2021-03-12 16:29:37 +00:00
|
|
|
#include <unistd.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
|
2022-06-30 18:34:38 +00:00
|
|
|
RefPtr<JS::VM> g_vm;
|
|
|
|
Vector<String> g_repl_statements;
|
|
|
|
JS::Handle<JS::Value> g_last_value = JS::make_handle(JS::js_undefined());
|
2020-04-02 15:52:40 +00:00
|
|
|
|
2021-03-17 15:52:26 +00:00
|
|
|
class ReplObject final : public JS::GlobalObject {
|
|
|
|
JS_OBJECT(ReplObject, JS::GlobalObject);
|
|
|
|
|
2020-04-01 19:20:32 +00:00
|
|
|
public:
|
2022-08-01 18:27:20 +00:00
|
|
|
ReplObject(JS::Realm& realm)
|
|
|
|
: GlobalObject(realm)
|
|
|
|
{
|
|
|
|
}
|
2022-08-22 17:56:16 +00:00
|
|
|
virtual void initialize_global_object(JS::Realm&) override;
|
2021-05-26 00:01:07 +00:00
|
|
|
virtual ~ReplObject() override = default;
|
2020-04-01 19:20:32 +00:00
|
|
|
|
|
|
|
private:
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(exit_interpreter);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(repl_help);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(save_to_file);
|
2022-06-06 17:51:02 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(load_ini);
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(load_json);
|
2022-01-16 01:05:32 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(last_value_getter);
|
2022-02-14 08:34:50 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(print);
|
2020-04-01 19:20:32 +00:00
|
|
|
};
|
|
|
|
|
2021-05-25 22:50:18 +00:00
|
|
|
class ScriptObject final : public JS::GlobalObject {
|
|
|
|
JS_OBJECT(ScriptObject, JS::GlobalObject);
|
|
|
|
|
|
|
|
public:
|
2022-08-01 18:27:20 +00:00
|
|
|
ScriptObject(JS::Realm& realm)
|
|
|
|
: JS::GlobalObject(realm)
|
|
|
|
{
|
|
|
|
}
|
2022-08-22 17:56:16 +00:00
|
|
|
virtual void initialize_global_object(JS::Realm&) override;
|
2021-05-26 00:01:07 +00:00
|
|
|
virtual ~ScriptObject() override = default;
|
2021-05-25 22:50:18 +00:00
|
|
|
|
|
|
|
private:
|
2022-06-06 17:51:02 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(load_ini);
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(load_json);
|
2022-02-14 08:34:50 +00:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(print);
|
2021-05-25 22:50:18 +00:00
|
|
|
};
|
|
|
|
|
2020-04-26 14:19:30 +00:00
|
|
|
static bool s_dump_ast = false;
|
2021-06-03 08:46:30 +00:00
|
|
|
static bool s_run_bytecode = false;
|
2021-06-13 16:10:20 +00:00
|
|
|
static bool s_opt_bytecode = false;
|
2021-08-14 15:30:37 +00:00
|
|
|
static bool s_as_module = false;
|
2020-04-26 14:19:30 +00:00
|
|
|
static bool s_print_last_result = false;
|
2021-11-23 20:46:28 +00:00
|
|
|
static bool s_strip_ansi = false;
|
2021-11-23 21:02:19 +00:00
|
|
|
static bool s_disable_source_location_hints = false;
|
2020-05-26 10:34:39 +00:00
|
|
|
static RefPtr<Line::Editor> s_editor;
|
2020-10-25 23:36:06 +00:00
|
|
|
static String s_history_path = String::formatted("{}/.js-history", Core::StandardPaths::home_directory());
|
2020-04-26 14:19:30 +00:00
|
|
|
static int s_repl_line_level = 0;
|
2020-05-25 12:27:07 +00:00
|
|
|
static bool s_fail_repl = false;
|
2020-04-09 03:30:45 +00:00
|
|
|
|
|
|
|
static String prompt_for_level(int level)
|
|
|
|
{
|
|
|
|
static StringBuilder prompt_builder;
|
|
|
|
prompt_builder.clear();
|
2022-07-11 17:32:29 +00:00
|
|
|
prompt_builder.append("> "sv);
|
2020-04-09 03:30:45 +00:00
|
|
|
|
|
|
|
for (auto i = 0; i < level; ++i)
|
2022-07-11 17:32:29 +00:00
|
|
|
prompt_builder.append(" "sv);
|
2020-04-09 03:30:45 +00:00
|
|
|
|
|
|
|
return prompt_builder.build();
|
|
|
|
}
|
2020-03-25 22:10:29 +00:00
|
|
|
|
2020-08-10 21:48:37 +00:00
|
|
|
static String read_next_piece()
|
2020-03-25 22:10:29 +00:00
|
|
|
{
|
|
|
|
StringBuilder piece;
|
|
|
|
|
2020-05-30 17:12:11 +00:00
|
|
|
auto line_level_delta_for_next_line { 0 };
|
|
|
|
|
2020-03-25 22:10:29 +00:00
|
|
|
do {
|
2020-05-25 12:27:07 +00:00
|
|
|
auto line_result = s_editor->get_line(prompt_for_level(s_repl_line_level));
|
|
|
|
|
2020-05-30 17:12:11 +00:00
|
|
|
line_level_delta_for_next_line = 0;
|
|
|
|
|
2020-05-25 12:27:07 +00:00
|
|
|
if (line_result.is_error()) {
|
|
|
|
s_fail_repl = true;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
auto& line = line_result.value();
|
2020-04-26 14:19:30 +00:00
|
|
|
s_editor->add_to_history(line);
|
2020-03-25 22:10:29 +00:00
|
|
|
|
|
|
|
piece.append(line);
|
2021-06-20 20:58:57 +00:00
|
|
|
piece.append('\n');
|
2020-03-25 22:10:29 +00:00
|
|
|
auto lexer = JS::Lexer(line);
|
|
|
|
|
2020-05-30 17:12:11 +00:00
|
|
|
enum {
|
|
|
|
NotInLabelOrObjectKey,
|
|
|
|
InLabelOrObjectKeyIdentifier,
|
|
|
|
InLabelOrObjectKey
|
|
|
|
} label_state { NotInLabelOrObjectKey };
|
|
|
|
|
2020-03-25 22:10:29 +00:00
|
|
|
for (JS::Token token = lexer.next(); token.type() != JS::TokenType::Eof; token = lexer.next()) {
|
|
|
|
switch (token.type()) {
|
|
|
|
case JS::TokenType::BracketOpen:
|
|
|
|
case JS::TokenType::CurlyOpen:
|
|
|
|
case JS::TokenType::ParenOpen:
|
2020-05-30 17:12:11 +00:00
|
|
|
label_state = NotInLabelOrObjectKey;
|
2020-04-26 14:19:30 +00:00
|
|
|
s_repl_line_level++;
|
2020-03-25 22:10:29 +00:00
|
|
|
break;
|
|
|
|
case JS::TokenType::BracketClose:
|
|
|
|
case JS::TokenType::CurlyClose:
|
|
|
|
case JS::TokenType::ParenClose:
|
2020-05-30 17:12:11 +00:00
|
|
|
label_state = NotInLabelOrObjectKey;
|
2020-04-26 14:19:30 +00:00
|
|
|
s_repl_line_level--;
|
2020-03-25 22:10:29 +00:00
|
|
|
break;
|
2020-05-30 17:12:11 +00:00
|
|
|
|
|
|
|
case JS::TokenType::Identifier:
|
|
|
|
case JS::TokenType::StringLiteral:
|
|
|
|
if (label_state == NotInLabelOrObjectKey)
|
|
|
|
label_state = InLabelOrObjectKeyIdentifier;
|
|
|
|
else
|
|
|
|
label_state = NotInLabelOrObjectKey;
|
|
|
|
break;
|
|
|
|
case JS::TokenType::Colon:
|
|
|
|
if (label_state == InLabelOrObjectKeyIdentifier)
|
|
|
|
label_state = InLabelOrObjectKey;
|
|
|
|
else
|
|
|
|
label_state = NotInLabelOrObjectKey;
|
|
|
|
break;
|
2020-03-25 22:10:29 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-05-30 17:12:11 +00:00
|
|
|
|
|
|
|
if (label_state == InLabelOrObjectKey) {
|
|
|
|
// If there's a label or object literal key at the end of this line,
|
|
|
|
// prompt for more lines but do not change the line level.
|
|
|
|
line_level_delta_for_next_line += 1;
|
|
|
|
}
|
|
|
|
} while (s_repl_line_level + line_level_delta_for_next_line > 0);
|
2020-03-25 22:10:29 +00:00
|
|
|
|
|
|
|
return piece.to_string();
|
|
|
|
}
|
|
|
|
|
2021-11-23 20:46:28 +00:00
|
|
|
static String strip_ansi(StringView format_string)
|
|
|
|
{
|
|
|
|
if (format_string.is_empty())
|
|
|
|
return String::empty();
|
|
|
|
|
|
|
|
StringBuilder builder;
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < format_string.length() - 1; ++i) {
|
|
|
|
if (format_string[i] == '\033' && format_string[i + 1] == '[') {
|
|
|
|
while (i < format_string.length() && format_string[i] != 'm')
|
|
|
|
++i;
|
|
|
|
} else {
|
|
|
|
builder.append(format_string[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i < format_string.length())
|
|
|
|
builder.append(format_string[i]);
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Parameters>
|
2022-04-01 17:58:27 +00:00
|
|
|
static void js_out(CheckedFormatString<Parameters...>&& fmtstr, Parameters const&... parameters)
|
2021-11-23 20:46:28 +00:00
|
|
|
{
|
|
|
|
if (!s_strip_ansi)
|
|
|
|
return out(move(fmtstr), parameters...);
|
|
|
|
auto stripped_fmtstr = strip_ansi(fmtstr.view());
|
|
|
|
out(stripped_fmtstr, parameters...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Parameters>
|
2022-04-01 17:58:27 +00:00
|
|
|
static void js_outln(CheckedFormatString<Parameters...>&& fmtstr, Parameters const&... parameters)
|
2021-11-23 20:46:28 +00:00
|
|
|
{
|
|
|
|
if (!s_strip_ansi)
|
|
|
|
return outln(move(fmtstr), parameters...);
|
|
|
|
auto stripped_fmtstr = strip_ansi(fmtstr.view());
|
|
|
|
outln(stripped_fmtstr, parameters...);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void js_outln() { outln(); }
|
|
|
|
|
2020-03-26 11:26:11 +00:00
|
|
|
static void print_value(JS::Value value, HashTable<JS::Object*>& seen_objects);
|
|
|
|
|
2021-07-06 22:58:50 +00:00
|
|
|
static void print_type(FlyString const& name)
|
2020-12-04 22:58:10 +00:00
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("[\033[36;1m{}\033[0m]", name);
|
2020-12-04 22:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_separator(bool& first)
|
|
|
|
{
|
2022-07-11 17:32:29 +00:00
|
|
|
js_out(first ? " "sv : ", "sv);
|
2020-12-04 22:58:10 +00:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:37 +00:00
|
|
|
static void print_array(JS::Array const& array, HashTable<JS::Object*>& seen_objects)
|
2020-03-26 11:26:11 +00:00
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("[");
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
bool first = true;
|
|
|
|
for (auto it = array.indexed_properties().begin(false); it != array.indexed_properties().end(); ++it) {
|
2020-12-04 22:58:10 +00:00
|
|
|
print_separator(first);
|
2021-10-02 22:52:27 +00:00
|
|
|
auto value_or_error = array.get(it.index());
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
// The V8 repl doesn't throw an exception here, and instead just
|
|
|
|
// prints 'undefined'. We may choose to replicate that behavior in
|
|
|
|
// the future, but for now lets just catch the error
|
2021-10-02 22:52:27 +00:00
|
|
|
if (value_or_error.is_error())
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
return;
|
2021-10-02 22:52:27 +00:00
|
|
|
auto value = value_or_error.release_value();
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
print_value(value, seen_objects);
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
2020-12-04 22:58:10 +00:00
|
|
|
if (!first)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
|
|
|
js_out("]");
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:37 +00:00
|
|
|
static void print_object(JS::Object const& object, HashTable<JS::Object*>& seen_objects)
|
2020-03-26 11:26:11 +00:00
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("{{");
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
bool first = true;
|
|
|
|
for (auto& entry : object.indexed_properties()) {
|
2020-12-04 22:58:10 +00:00
|
|
|
print_separator(first);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\"\033[33;1m{}\033[0m\": ", entry.index());
|
2021-10-02 22:52:27 +00:00
|
|
|
auto value_or_error = object.get(entry.index());
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
// The V8 repl doesn't throw an exception here, and instead just
|
|
|
|
// prints 'undefined'. We may choose to replicate that behavior in
|
|
|
|
// the future, but for now lets just catch the error
|
2021-10-02 22:52:27 +00:00
|
|
|
if (value_or_error.is_error())
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
return;
|
2021-10-02 22:52:27 +00:00
|
|
|
auto value = value_or_error.release_value();
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 18:35:09 +00:00
|
|
|
print_value(value, seen_objects);
|
2020-04-06 14:53:02 +00:00
|
|
|
}
|
2020-04-29 02:19:31 +00:00
|
|
|
for (auto& it : object.shape().property_table_ordered()) {
|
2020-12-04 22:58:10 +00:00
|
|
|
print_separator(first);
|
2020-07-08 04:38:46 +00:00
|
|
|
if (it.key.is_string()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\"\033[33;1m{}\033[0m\": ", it.key.to_display_string());
|
2020-07-08 04:38:46 +00:00
|
|
|
} else {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("[\033[33;1m{}\033[0m]: ", it.key.to_display_string());
|
2020-07-08 04:38:46 +00:00
|
|
|
}
|
2020-04-02 17:32:21 +00:00
|
|
|
print_value(object.get_direct(it.value.offset), seen_objects);
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
2020-12-04 22:58:10 +00:00
|
|
|
if (!first)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
|
|
|
js_out("}}");
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_function(JS::FunctionObject const& function_object, HashTable<JS::Object*>&)
|
2020-03-26 13:54:43 +00:00
|
|
|
{
|
2022-06-30 18:30:18 +00:00
|
|
|
if (is<JS::ECMAScriptFunctionObject>(function_object)) {
|
|
|
|
auto const& ecmascript_function_object = static_cast<JS::ECMAScriptFunctionObject const&>(function_object);
|
|
|
|
switch (ecmascript_function_object.kind()) {
|
2022-05-05 20:42:10 +00:00
|
|
|
case JS::FunctionKind::Normal:
|
|
|
|
print_type("Function");
|
|
|
|
break;
|
|
|
|
case JS::FunctionKind::Generator:
|
|
|
|
print_type("GeneratorFunction");
|
|
|
|
break;
|
|
|
|
case JS::FunctionKind::Async:
|
|
|
|
print_type("AsyncFunction");
|
|
|
|
break;
|
|
|
|
case JS::FunctionKind::AsyncGenerator:
|
|
|
|
print_type("AsyncGeneratorFunction");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
}
|
|
|
|
} else {
|
2022-06-30 18:30:18 +00:00
|
|
|
print_type(function_object.class_name());
|
2022-05-05 20:42:10 +00:00
|
|
|
}
|
2022-06-30 18:30:18 +00:00
|
|
|
if (is<JS::ECMAScriptFunctionObject>(function_object))
|
|
|
|
js_out(" {}", static_cast<JS::ECMAScriptFunctionObject const&>(function_object).name());
|
|
|
|
else if (is<JS::NativeFunction>(function_object))
|
|
|
|
js_out(" {}", static_cast<JS::NativeFunction const&>(function_object).name());
|
2020-03-26 13:54:43 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_date(JS::Date const& date, HashTable<JS::Object*>&)
|
2020-03-31 17:43:45 +00:00
|
|
|
{
|
2020-12-04 22:58:10 +00:00
|
|
|
print_type("Date");
|
2022-06-30 18:30:18 +00:00
|
|
|
js_out(" \033[34;1m{}\033[0m", JS::to_date_string(date.date_value()));
|
2020-03-31 17:43:45 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 22:58:50 +00:00
|
|
|
static void print_error(JS::Object const& object, HashTable<JS::Object*>& seen_objects)
|
2020-04-02 07:54:15 +00:00
|
|
|
{
|
2022-06-30 18:34:38 +00:00
|
|
|
auto name = object.get_without_side_effects(g_vm->names.name).value_or(JS::js_undefined());
|
|
|
|
auto message = object.get_without_side_effects(g_vm->names.message).value_or(JS::js_undefined());
|
2021-07-07 16:34:26 +00:00
|
|
|
if (name.is_accessor() || message.is_accessor()) {
|
2021-04-11 22:08:28 +00:00
|
|
|
print_value(&object, seen_objects);
|
|
|
|
} else {
|
|
|
|
auto name_string = name.to_string_without_side_effects();
|
|
|
|
auto message_string = message.to_string_without_side_effects();
|
|
|
|
print_type(name_string);
|
|
|
|
if (!message_string.is_empty())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[31;1m{}\033[0m", message_string);
|
2021-04-11 22:08:28 +00:00
|
|
|
}
|
2020-12-04 22:58:10 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_regexp_object(JS::RegExpObject const& regexp_object, HashTable<JS::Object*>&)
|
2020-12-04 22:58:10 +00:00
|
|
|
{
|
|
|
|
print_type("RegExp");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m/{}/{}\033[0m", regexp_object.escape_regexp_pattern(), regexp_object.flags());
|
2020-12-04 22:58:10 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_proxy_object(JS::ProxyObject const& proxy_object, HashTable<JS::Object*>& seen_objects)
|
2020-12-04 22:58:10 +00:00
|
|
|
{
|
|
|
|
print_type("Proxy");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n target: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_value(&proxy_object.target(), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n handler: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_value(&proxy_object.handler(), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_map(JS::Map const& map, HashTable<JS::Object*>& seen_objects)
|
2021-06-12 20:54:40 +00:00
|
|
|
{
|
|
|
|
print_type("Map");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" {{");
|
2021-06-12 20:54:40 +00:00
|
|
|
bool first = true;
|
2022-06-30 18:30:37 +00:00
|
|
|
for (auto const& entry : map) {
|
2021-06-12 20:54:40 +00:00
|
|
|
print_separator(first);
|
|
|
|
print_value(entry.key, seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" => ");
|
2021-06-12 20:54:40 +00:00
|
|
|
print_value(entry.value, seen_objects);
|
|
|
|
}
|
|
|
|
if (!first)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
|
|
|
js_out("}}");
|
2021-06-12 20:54:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_set(JS::Set const& set, HashTable<JS::Object*>& seen_objects)
|
2021-06-08 21:08:47 +00:00
|
|
|
{
|
|
|
|
print_type("Set");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" {{");
|
2021-06-08 21:08:47 +00:00
|
|
|
bool first = true;
|
2022-06-30 18:30:37 +00:00
|
|
|
for (auto const& entry : set) {
|
2021-06-08 21:08:47 +00:00
|
|
|
print_separator(first);
|
2022-02-09 15:04:16 +00:00
|
|
|
print_value(entry.key, seen_objects);
|
2021-06-08 21:08:47 +00:00
|
|
|
}
|
|
|
|
if (!first)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
|
|
|
js_out("}}");
|
2021-06-08 21:08:47 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:59:24 +00:00
|
|
|
static void print_weak_map(JS::WeakMap const& weak_map, HashTable<JS::Object*>&)
|
|
|
|
{
|
|
|
|
print_type("WeakMap");
|
|
|
|
js_out(" ({})", weak_map.values().size());
|
|
|
|
// Note: We could tell you what's actually inside, but not in insertion order.
|
|
|
|
}
|
|
|
|
|
2022-06-30 19:00:00 +00:00
|
|
|
static void print_weak_set(JS::WeakSet const& weak_set, HashTable<JS::Object*>&)
|
|
|
|
{
|
|
|
|
print_type("WeakSet");
|
|
|
|
js_out(" ({})", weak_set.values().size());
|
|
|
|
// Note: We could tell you what's actually inside, but not in insertion order.
|
|
|
|
}
|
|
|
|
|
2022-06-30 19:00:20 +00:00
|
|
|
static void print_weak_ref(JS::WeakRef const& weak_ref, HashTable<JS::Object*>& seen_objects)
|
|
|
|
{
|
|
|
|
print_type("WeakRef");
|
|
|
|
js_out(" ");
|
|
|
|
print_value(weak_ref.value().visit([](Empty) -> JS::Value { return JS::js_undefined(); }, [](auto* value) -> JS::Value { return value; }), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_promise(JS::Promise const& promise, HashTable<JS::Object*>& seen_objects)
|
2021-04-01 20:14:05 +00:00
|
|
|
{
|
|
|
|
print_type("Promise");
|
|
|
|
switch (promise.state()) {
|
|
|
|
case JS::Promise::State::Pending:
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n state: ");
|
|
|
|
js_out("\033[36;1mPending\033[0m");
|
2021-04-01 20:14:05 +00:00
|
|
|
break;
|
|
|
|
case JS::Promise::State::Fulfilled:
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n state: ");
|
|
|
|
js_out("\033[32;1mFulfilled\033[0m");
|
|
|
|
js_out("\n result: ");
|
2021-04-01 20:14:05 +00:00
|
|
|
print_value(promise.result(), seen_objects);
|
|
|
|
break;
|
|
|
|
case JS::Promise::State::Rejected:
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n state: ");
|
|
|
|
js_out("\033[31;1mRejected\033[0m");
|
|
|
|
js_out("\n result: ");
|
2021-04-01 20:14:05 +00:00
|
|
|
print_value(promise.result(), seen_objects);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_array_buffer(JS::ArrayBuffer const& array_buffer, HashTable<JS::Object*>& seen_objects)
|
2020-12-04 22:58:10 +00:00
|
|
|
{
|
|
|
|
auto& buffer = array_buffer.buffer();
|
|
|
|
auto byte_length = array_buffer.byte_length();
|
|
|
|
print_type("ArrayBuffer");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n byteLength: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_value(JS::Value((double)byte_length), seen_objects);
|
2021-05-21 18:20:43 +00:00
|
|
|
if (!byte_length)
|
|
|
|
return;
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln();
|
2020-12-04 22:58:10 +00:00
|
|
|
for (size_t i = 0; i < byte_length; ++i) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("{:02x}", buffer[i]);
|
2020-12-04 22:58:10 +00:00
|
|
|
if (i + 1 < byte_length) {
|
|
|
|
if ((i + 1) % 32 == 0)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln();
|
2020-12-04 22:58:10 +00:00
|
|
|
else if ((i + 1) % 16 == 0)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2020-12-04 22:58:10 +00:00
|
|
|
else
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2020-12-04 22:58:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_shadow_realm(JS::ShadowRealm const&, HashTable<JS::Object*>&)
|
2021-10-13 21:05:27 +00:00
|
|
|
{
|
|
|
|
// Not much we can show here that would be useful. Realm pointer address?!
|
|
|
|
print_type("ShadowRealm");
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_generator(JS::GeneratorObject const&, HashTable<JS::Object*>&)
|
2022-05-05 18:50:32 +00:00
|
|
|
{
|
|
|
|
print_type("Generator");
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_async_generator(JS::AsyncGenerator const&, HashTable<JS::Object*>&)
|
2022-05-05 18:50:32 +00:00
|
|
|
{
|
|
|
|
print_type("AsyncGenerator");
|
|
|
|
}
|
|
|
|
|
2021-06-17 00:00:12 +00:00
|
|
|
template<typename T>
|
|
|
|
static void print_number(T number) requires IsArithmetic<T>
|
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[35;1m");
|
|
|
|
js_out("{}", number);
|
|
|
|
js_out("\033[0m");
|
2021-06-17 00:00:12 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_typed_array(JS::TypedArrayBase const& typed_array_base, HashTable<JS::Object*>& seen_objects)
|
2020-12-04 22:58:10 +00:00
|
|
|
{
|
2021-07-04 16:36:10 +00:00
|
|
|
auto& array_buffer = *typed_array_base.viewed_array_buffer();
|
2020-12-04 22:58:10 +00:00
|
|
|
auto length = typed_array_base.array_length();
|
2022-06-30 18:30:18 +00:00
|
|
|
print_type(typed_array_base.class_name());
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n length: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_value(JS::Value(length), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n byteLength: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_value(JS::Value(typed_array_base.byte_length()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n buffer: ");
|
2020-12-04 22:58:10 +00:00
|
|
|
print_type("ArrayBuffer");
|
2021-07-04 16:36:10 +00:00
|
|
|
if (array_buffer.is_detached())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" (detached)");
|
|
|
|
js_out(" @ {:p}", &array_buffer);
|
2021-07-04 16:36:10 +00:00
|
|
|
if (!length || array_buffer.is_detached())
|
2020-12-04 22:58:10 +00:00
|
|
|
return;
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln();
|
2020-12-04 22:58:10 +00:00
|
|
|
// FIXME: This kinda sucks.
|
|
|
|
#define __JS_ENUMERATE(ClassName, snake_name, PrototypeName, ConstructorName, ArrayType) \
|
2022-06-30 18:30:18 +00:00
|
|
|
if (is<JS::ClassName>(typed_array_base)) { \
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("[ "); \
|
2021-07-06 22:58:50 +00:00
|
|
|
auto& typed_array = static_cast<JS::ClassName const&>(typed_array_base); \
|
2020-12-04 22:58:10 +00:00
|
|
|
auto data = typed_array.data(); \
|
|
|
|
for (size_t i = 0; i < length; ++i) { \
|
|
|
|
if (i > 0) \
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(", "); \
|
2021-06-17 00:00:12 +00:00
|
|
|
print_number(data[i]); \
|
2020-12-04 22:58:10 +00:00
|
|
|
} \
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ]"); \
|
2020-12-04 22:58:10 +00:00
|
|
|
return; \
|
|
|
|
}
|
|
|
|
JS_ENUMERATE_TYPED_ARRAYS
|
|
|
|
#undef __JS_ENUMERATE
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-04-02 07:54:15 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_data_view(JS::DataView const& data_view, HashTable<JS::Object*>& seen_objects)
|
2021-06-13 22:47:08 +00:00
|
|
|
{
|
|
|
|
print_type("DataView");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n byteLength: ");
|
2021-06-13 22:47:08 +00:00
|
|
|
print_value(JS::Value(data_view.byte_length()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n byteOffset: ");
|
2021-06-13 22:47:08 +00:00
|
|
|
print_value(JS::Value(data_view.byte_offset()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n buffer: ");
|
2021-06-13 22:47:08 +00:00
|
|
|
print_type("ArrayBuffer");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" @ {:p}", data_view.viewed_array_buffer());
|
2021-06-13 22:47:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_calendar(JS::Temporal::Calendar const& calendar, HashTable<JS::Object*>& seen_objects)
|
2021-07-14 20:59:49 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.Calendar");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(JS::js_string(calendar.vm(), calendar.identifier()), seen_objects);
|
2021-07-14 20:59:49 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_duration(JS::Temporal::Duration const& duration, HashTable<JS::Object*>&)
|
2021-07-15 23:17:01 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.Duration");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{} y, {} M, {} w, {} d, {} h, {} m, {} s, {} ms, {} us, {} ns\033[0m", duration.years(), duration.months(), duration.weeks(), duration.days(), duration.hours(), duration.minutes(), duration.seconds(), duration.milliseconds(), duration.microseconds(), duration.nanoseconds());
|
2021-07-15 23:17:01 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_instant(JS::Temporal::Instant const& instant, HashTable<JS::Object*>& seen_objects)
|
2021-07-07 16:43:17 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.Instant");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2021-07-07 16:43:17 +00:00
|
|
|
// FIXME: Print human readable date and time, like in print_date() - ideally handling arbitrarily large values since we get a bigint.
|
|
|
|
print_value(&instant.nanoseconds(), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_plain_date(JS::Temporal::PlainDate const& plain_date, HashTable<JS::Object*>& seen_objects)
|
2021-07-22 19:06:27 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.PlainDate");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{:04}-{:02}-{:02}\033[0m", plain_date.iso_year(), plain_date.iso_month(), plain_date.iso_day());
|
|
|
|
js_out("\n calendar: ");
|
2021-09-06 22:08:28 +00:00
|
|
|
print_value(&plain_date.calendar(), seen_objects);
|
2021-07-22 19:06:27 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_plain_date_time(JS::Temporal::PlainDateTime const& plain_date_time, HashTable<JS::Object*>& seen_objects)
|
2021-07-22 19:07:16 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.PlainDateTime");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{:04}-{:02}-{:02} {:02}:{:02}:{:02}.{:03}{:03}{:03}\033[0m", plain_date_time.iso_year(), plain_date_time.iso_month(), plain_date_time.iso_day(), plain_date_time.iso_hour(), plain_date_time.iso_minute(), plain_date_time.iso_second(), plain_date_time.iso_millisecond(), plain_date_time.iso_microsecond(), plain_date_time.iso_nanosecond());
|
|
|
|
js_out("\n calendar: ");
|
2021-09-06 22:08:28 +00:00
|
|
|
print_value(&plain_date_time.calendar(), seen_objects);
|
2021-07-22 19:07:16 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_plain_month_day(JS::Temporal::PlainMonthDay const& plain_month_day, HashTable<JS::Object*>& seen_objects)
|
2021-09-06 22:02:33 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.PlainMonthDay");
|
|
|
|
// Also has an [[ISOYear]] internal slot, but showing that here seems rather unexpected.
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{:02}-{:02}\033[0m", plain_month_day.iso_month(), plain_month_day.iso_day());
|
|
|
|
js_out("\n calendar: ");
|
2021-09-06 22:08:28 +00:00
|
|
|
print_value(&plain_month_day.calendar(), seen_objects);
|
2021-09-06 22:02:33 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_plain_time(JS::Temporal::PlainTime const& plain_time, HashTable<JS::Object*>& seen_objects)
|
2021-07-28 18:29:45 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.PlainTime");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{:02}:{:02}:{:02}.{:03}{:03}{:03}\033[0m", plain_time.iso_hour(), plain_time.iso_minute(), plain_time.iso_second(), plain_time.iso_millisecond(), plain_time.iso_microsecond(), plain_time.iso_nanosecond());
|
|
|
|
js_out("\n calendar: ");
|
2021-09-06 22:08:28 +00:00
|
|
|
print_value(&plain_time.calendar(), seen_objects);
|
2021-07-28 18:29:45 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_plain_year_month(JS::Temporal::PlainYearMonth const& plain_year_month, HashTable<JS::Object*>& seen_objects)
|
2021-09-06 21:57:25 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.PlainYearMonth");
|
|
|
|
// Also has an [[ISODay]] internal slot, but showing that here seems rather unexpected.
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" \033[34;1m{:04}-{:02}\033[0m", plain_year_month.iso_year(), plain_year_month.iso_month());
|
|
|
|
js_out("\n calendar: ");
|
2021-09-06 22:08:28 +00:00
|
|
|
print_value(&plain_year_month.calendar(), seen_objects);
|
2021-09-06 21:57:25 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_time_zone(JS::Temporal::TimeZone const& time_zone, HashTable<JS::Object*>& seen_objects)
|
2021-07-06 22:56:32 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.TimeZone");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(JS::js_string(time_zone.vm(), time_zone.identifier()), seen_objects);
|
2021-07-06 22:56:32 +00:00
|
|
|
if (time_zone.offset_nanoseconds().has_value()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n offset (ns): ");
|
2021-07-06 22:56:32 +00:00
|
|
|
print_value(JS::Value(*time_zone.offset_nanoseconds()), seen_objects);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_temporal_zoned_date_time(JS::Temporal::ZonedDateTime const& zoned_date_time, HashTable<JS::Object*>& seen_objects)
|
2021-08-01 17:16:47 +00:00
|
|
|
{
|
|
|
|
print_type("Temporal.ZonedDateTime");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n epochNanoseconds: ");
|
2021-08-01 17:16:47 +00:00
|
|
|
print_value(&zoned_date_time.nanoseconds(), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n timeZone: ");
|
2021-08-01 17:16:47 +00:00
|
|
|
print_value(&zoned_date_time.time_zone(), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n calendar: ");
|
2021-08-01 17:16:47 +00:00
|
|
|
print_value(&zoned_date_time.calendar(), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_display_names(JS::Intl::DisplayNames const& display_names, HashTable<JS::Object*>& seen_objects)
|
2021-08-25 02:38:08 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.DisplayNames");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(display_names.vm(), display_names.locale()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n type: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(display_names.vm(), display_names.type_string()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n style: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(display_names.vm(), display_names.style_string()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n fallback: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(display_names.vm(), display_names.fallback_string()), seen_objects);
|
2022-01-12 18:56:04 +00:00
|
|
|
if (display_names.has_language_display()) {
|
|
|
|
js_out("\n languageDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(display_names.vm(), display_names.language_display_string()), seen_objects);
|
2022-01-12 18:56:04 +00:00
|
|
|
}
|
2021-08-25 02:38:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_locale(JS::Intl::Locale const& locale, HashTable<JS::Object*>& seen_objects)
|
2021-09-02 12:32:55 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.Locale");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.locale()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
if (locale.has_calendar()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n calendar: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.calendar()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
}
|
|
|
|
if (locale.has_case_first()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n caseFirst: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.case_first()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
}
|
|
|
|
if (locale.has_collation()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n collation: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.collation()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
}
|
|
|
|
if (locale.has_hour_cycle()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n hourCycle: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.hour_cycle()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
}
|
|
|
|
if (locale.has_numbering_system()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n numberingSystem: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(locale.vm(), locale.numbering_system()), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
}
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n numeric: ");
|
2021-09-02 12:32:55 +00:00
|
|
|
print_value(JS::Value(locale.numeric()), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_list_format(JS::Intl::ListFormat const& list_format, HashTable<JS::Object*>& seen_objects)
|
2021-09-06 12:44:54 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.ListFormat");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(list_format.vm(), list_format.locale()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n type: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(list_format.vm(), list_format.type_string()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n style: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(list_format.vm(), list_format.style_string()), seen_objects);
|
2021-09-06 12:44:54 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_number_format(JS::Intl::NumberFormat const& number_format, HashTable<JS::Object*>& seen_objects)
|
2021-09-10 11:30:45 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.NumberFormat");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.locale()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n dataLocale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.data_locale()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n numberingSystem: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.numbering_system()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n style: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.style_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
if (number_format.has_currency()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n currency: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.currency()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
|
|
|
if (number_format.has_currency_display()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n currencyDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.currency_display_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
|
|
|
if (number_format.has_currency_sign()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n currencySign: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.currency_sign_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
|
|
|
if (number_format.has_unit()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n unit: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.unit()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
|
|
|
if (number_format.has_unit_display()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n unitDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.unit_display_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n minimumIntegerDigits: ");
|
2021-09-10 11:30:45 +00:00
|
|
|
print_value(JS::Value(number_format.min_integer_digits()), seen_objects);
|
|
|
|
if (number_format.has_min_fraction_digits()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n minimumFractionDigits: ");
|
2021-09-10 11:30:45 +00:00
|
|
|
print_value(JS::Value(number_format.min_fraction_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (number_format.has_max_fraction_digits()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n maximumFractionDigits: ");
|
2021-09-10 11:30:45 +00:00
|
|
|
print_value(JS::Value(number_format.max_fraction_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (number_format.has_min_significant_digits()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n minimumSignificantDigits: ");
|
2021-09-10 11:30:45 +00:00
|
|
|
print_value(JS::Value(number_format.min_significant_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (number_format.has_max_significant_digits()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n maximumSignificantDigits: ");
|
2021-09-10 11:30:45 +00:00
|
|
|
print_value(JS::Value(number_format.max_significant_digits()), seen_objects);
|
|
|
|
}
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n useGrouping: ");
|
2022-08-20 07:25:24 +00:00
|
|
|
print_value(number_format.use_grouping_to_value(number_format.vm()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n roundingType: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.rounding_type_string()), seen_objects);
|
2022-07-12 17:18:23 +00:00
|
|
|
js_out("\n roundingMode: ");
|
|
|
|
print_value(js_string(number_format.vm(), number_format.rounding_mode_string()), seen_objects);
|
|
|
|
js_out("\n roundingIncrement: ");
|
|
|
|
print_value(JS::Value(number_format.rounding_increment()), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n notation: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.notation_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
if (number_format.has_compact_display()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n compactDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.compact_display_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\n signDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(number_format.vm(), number_format.sign_display_string()), seen_objects);
|
2022-07-12 17:18:23 +00:00
|
|
|
js_out("\n trailingZeroDisplay: ");
|
|
|
|
print_value(js_string(number_format.vm(), number_format.trailing_zero_display_string()), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_date_time_format(JS::Intl::DateTimeFormat& date_time_format, HashTable<JS::Object*>& seen_objects)
|
2021-11-28 23:05:32 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.DateTimeFormat");
|
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.locale()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
js_out("\n pattern: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.pattern()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
js_out("\n calendar: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.calendar()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
js_out("\n numberingSystem: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.numbering_system()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
if (date_time_format.has_hour_cycle()) {
|
|
|
|
js_out("\n hourCycle: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.hour_cycle_string()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
}
|
|
|
|
js_out("\n timeZone: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.time_zone()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
if (date_time_format.has_date_style()) {
|
|
|
|
js_out("\n dateStyle: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.date_style_string()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
}
|
|
|
|
if (date_time_format.has_time_style()) {
|
|
|
|
js_out("\n timeStyle: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.time_style_string()), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
}
|
|
|
|
|
2022-08-20 07:25:24 +00:00
|
|
|
JS::Intl::for_each_calendar_field(date_time_format.vm(), date_time_format, [&](auto& option, auto const& property, auto const&) -> JS::ThrowCompletionOr<void> {
|
2021-11-28 23:05:32 +00:00
|
|
|
using ValueType = typename RemoveReference<decltype(option)>::ValueType;
|
|
|
|
|
|
|
|
if (!option.has_value())
|
|
|
|
return {};
|
|
|
|
|
|
|
|
js_out("\n {}: ", property);
|
|
|
|
|
|
|
|
if constexpr (IsIntegral<ValueType>) {
|
|
|
|
print_value(JS::Value(*option), seen_objects);
|
|
|
|
} else {
|
|
|
|
auto name = Unicode::calendar_pattern_style_to_string(*option);
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), name), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:37 +00:00
|
|
|
static void print_intl_relative_time_format(JS::Intl::RelativeTimeFormat const& date_time_format, HashTable<JS::Object*>& seen_objects)
|
2022-01-25 17:05:20 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.RelativeTimeFormat");
|
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.locale()), seen_objects);
|
2022-01-25 17:05:20 +00:00
|
|
|
js_out("\n numberingSystem: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.numbering_system()), seen_objects);
|
2022-01-25 17:05:20 +00:00
|
|
|
js_out("\n style: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.style_string()), seen_objects);
|
2022-01-25 17:05:20 +00:00
|
|
|
js_out("\n numeric: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(date_time_format.vm(), date_time_format.numeric_string()), seen_objects);
|
2022-01-25 17:05:20 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_plural_rules(JS::Intl::PluralRules const& plural_rules, HashTable<JS::Object*>& seen_objects)
|
2022-01-28 18:23:30 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.PluralRules");
|
|
|
|
js_out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(plural_rules.vm(), plural_rules.locale()), seen_objects);
|
2022-01-28 18:23:30 +00:00
|
|
|
js_out("\n type: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(plural_rules.vm(), plural_rules.type_string()), seen_objects);
|
2022-01-28 18:23:30 +00:00
|
|
|
js_out("\n minimumIntegerDigits: ");
|
|
|
|
print_value(JS::Value(plural_rules.min_integer_digits()), seen_objects);
|
|
|
|
if (plural_rules.has_min_fraction_digits()) {
|
|
|
|
js_out("\n minimumFractionDigits: ");
|
|
|
|
print_value(JS::Value(plural_rules.min_fraction_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (plural_rules.has_max_fraction_digits()) {
|
|
|
|
js_out("\n maximumFractionDigits: ");
|
|
|
|
print_value(JS::Value(plural_rules.max_fraction_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (plural_rules.has_min_significant_digits()) {
|
|
|
|
js_out("\n minimumSignificantDigits: ");
|
|
|
|
print_value(JS::Value(plural_rules.min_significant_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
if (plural_rules.has_max_significant_digits()) {
|
|
|
|
js_out("\n maximumSignificantDigits: ");
|
|
|
|
print_value(JS::Value(plural_rules.max_significant_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
js_out("\n roundingType: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(plural_rules.vm(), plural_rules.rounding_type_string()), seen_objects);
|
2022-01-28 18:23:30 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_collator(JS::Intl::Collator const& collator, HashTable<JS::Object*>& seen_objects)
|
2021-09-07 13:47:00 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.Collator");
|
|
|
|
out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(collator.vm(), collator.locale()), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
out("\n usage: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(collator.vm(), collator.usage_string()), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
out("\n sensitivity: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(collator.vm(), collator.sensitivity_string()), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
out("\n caseFirst: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(collator.vm(), collator.case_first_string()), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
out("\n collation: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(collator.vm(), collator.collation()), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
out("\n ignorePunctuation: ");
|
|
|
|
print_value(JS::Value(collator.ignore_punctuation()), seen_objects);
|
|
|
|
out("\n numeric: ");
|
|
|
|
print_value(JS::Value(collator.numeric()), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_segmenter(JS::Intl::Segmenter const& segmenter, HashTable<JS::Object*>& seen_objects)
|
2022-01-29 21:50:40 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.Segmenter");
|
|
|
|
out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(segmenter.vm(), segmenter.locale()), seen_objects);
|
2022-01-29 21:50:40 +00:00
|
|
|
out("\n granularity: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(segmenter.vm(), segmenter.segmenter_granularity_string()), seen_objects);
|
2022-01-29 21:50:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_segments(JS::Intl::Segments const& segments, HashTable<JS::Object*>& seen_objects)
|
2022-01-29 23:32:57 +00:00
|
|
|
{
|
|
|
|
print_type("Segments");
|
|
|
|
out("\n string: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(segments.vm(), segments.segments_string()), seen_objects);
|
2022-01-29 23:32:57 +00:00
|
|
|
out("\n segmenter: ");
|
|
|
|
print_value(&segments.segments_segmenter(), seen_objects);
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:30:18 +00:00
|
|
|
static void print_intl_duration_format(JS::Intl::DurationFormat const& duration_format, HashTable<JS::Object*>& seen_objects)
|
2022-06-30 19:20:41 +00:00
|
|
|
{
|
|
|
|
print_type("Intl.DurationFormat");
|
|
|
|
out("\n locale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.locale()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n dataLocale: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.data_locale()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n numberingSystem: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.numbering_system()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n style: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n years: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.years_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n yearsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.years_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n months: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.months_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n monthsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.months_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n weeks: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.weeks_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n weeksDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.weeks_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n days: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.days_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n daysDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.days_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n hours: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.hours_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n hoursDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.hours_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n minutes: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.minutes_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n minutesDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.minutes_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n seconds: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.seconds_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n secondsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.seconds_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n milliseconds: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.milliseconds_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n millisecondsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.milliseconds_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n microseconds: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.microseconds_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n microsecondsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.microseconds_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n nanoseconds: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.nanoseconds_style_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
out("\n nanosecondsDisplay: ");
|
2022-06-30 18:30:18 +00:00
|
|
|
print_value(js_string(duration_format.vm(), duration_format.nanoseconds_display_string()), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
if (duration_format.has_fractional_digits()) {
|
|
|
|
out("\n fractionalDigits: ");
|
|
|
|
print_value(JS::Value(duration_format.fractional_digits()), seen_objects);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:57:59 +00:00
|
|
|
static void print_boolean_object(JS::BooleanObject const& boolean_object, HashTable<JS::Object*>& seen_objects)
|
2020-06-03 23:05:49 +00:00
|
|
|
{
|
2022-06-30 18:57:59 +00:00
|
|
|
print_type("Boolean");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out(" ");
|
2022-06-30 18:57:59 +00:00
|
|
|
print_value(JS::Value(boolean_object.boolean()), seen_objects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_number_object(JS::NumberObject const& number_object, HashTable<JS::Object*>& seen_objects)
|
|
|
|
{
|
|
|
|
print_type("Number");
|
|
|
|
js_out(" ");
|
|
|
|
print_value(JS::Value(number_object.number()), seen_objects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_string_object(JS::StringObject const& string_object, HashTable<JS::Object*>& seen_objects)
|
|
|
|
{
|
|
|
|
print_type("String");
|
|
|
|
js_out(" ");
|
|
|
|
print_value(&string_object.primitive_string(), seen_objects);
|
2020-06-03 23:05:49 +00:00
|
|
|
}
|
|
|
|
|
2020-08-10 21:48:37 +00:00
|
|
|
static void print_value(JS::Value value, HashTable<JS::Object*>& seen_objects)
|
2020-03-26 11:26:11 +00:00
|
|
|
{
|
2020-04-08 16:38:09 +00:00
|
|
|
if (value.is_empty()) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[34;1m<empty>\033[0m");
|
2020-04-08 16:38:09 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-04-09 03:30:45 +00:00
|
|
|
|
2020-03-26 11:26:11 +00:00
|
|
|
if (value.is_object()) {
|
2020-04-01 20:18:47 +00:00
|
|
|
if (seen_objects.contains(&value.as_object())) {
|
2020-03-26 11:26:11 +00:00
|
|
|
// FIXME: Maybe we should only do this for circular references,
|
|
|
|
// not for all reoccurring objects.
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("<already printed Object {}>", &value.as_object());
|
2020-03-26 11:26:11 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-04-01 20:18:47 +00:00
|
|
|
seen_objects.set(&value.as_object());
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 17:43:45 +00:00
|
|
|
if (value.is_object()) {
|
2020-04-01 20:18:47 +00:00
|
|
|
auto& object = value.as_object();
|
2021-07-05 17:58:51 +00:00
|
|
|
if (is<JS::Array>(object))
|
2021-06-08 20:53:36 +00:00
|
|
|
return print_array(static_cast<JS::Array&>(object), seen_objects);
|
2020-04-01 20:18:47 +00:00
|
|
|
if (object.is_function())
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_function(static_cast<JS::FunctionObject&>(object), seen_objects);
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::Date>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_date(static_cast<JS::Date&>(object), seen_objects);
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::Error>(object))
|
2020-04-02 07:54:15 +00:00
|
|
|
return print_error(object, seen_objects);
|
2021-11-23 20:56:21 +00:00
|
|
|
|
|
|
|
auto prototype_or_error = object.internal_get_prototype_of();
|
2022-08-26 23:54:55 +00:00
|
|
|
if (prototype_or_error.has_value() && prototype_or_error.value() != nullptr) {
|
|
|
|
auto& prototype = *prototype_or_error.value();
|
|
|
|
if (&prototype == prototype.shape().realm().intrinsics().error_prototype())
|
|
|
|
return print_error(object, seen_objects);
|
|
|
|
}
|
2021-11-23 20:56:21 +00:00
|
|
|
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::RegExpObject>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_regexp_object(static_cast<JS::RegExpObject&>(object), seen_objects);
|
2021-06-12 20:54:40 +00:00
|
|
|
if (is<JS::Map>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_map(static_cast<JS::Map&>(object), seen_objects);
|
2021-06-08 21:08:47 +00:00
|
|
|
if (is<JS::Set>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_set(static_cast<JS::Set&>(object), seen_objects);
|
2022-06-30 18:59:24 +00:00
|
|
|
if (is<JS::WeakMap>(object))
|
|
|
|
return print_weak_map(static_cast<JS::WeakMap&>(object), seen_objects);
|
2022-06-30 19:00:00 +00:00
|
|
|
if (is<JS::WeakSet>(object))
|
|
|
|
return print_weak_set(static_cast<JS::WeakSet&>(object), seen_objects);
|
2022-06-30 19:00:20 +00:00
|
|
|
if (is<JS::WeakRef>(object))
|
|
|
|
return print_weak_ref(static_cast<JS::WeakRef&>(object), seen_objects);
|
2021-06-13 22:47:08 +00:00
|
|
|
if (is<JS::DataView>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_data_view(static_cast<JS::DataView&>(object), seen_objects);
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::ProxyObject>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_proxy_object(static_cast<JS::ProxyObject&>(object), seen_objects);
|
2021-04-01 20:14:05 +00:00
|
|
|
if (is<JS::Promise>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_promise(static_cast<JS::Promise&>(object), seen_objects);
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::ArrayBuffer>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_array_buffer(static_cast<JS::ArrayBuffer&>(object), seen_objects);
|
2021-10-13 21:05:27 +00:00
|
|
|
if (is<JS::ShadowRealm>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_shadow_realm(static_cast<JS::ShadowRealm&>(object), seen_objects);
|
2022-05-05 18:50:32 +00:00
|
|
|
if (is<JS::GeneratorObject>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_generator(static_cast<JS::GeneratorObject&>(object), seen_objects);
|
2022-05-05 18:50:32 +00:00
|
|
|
if (is<JS::AsyncGenerator>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_async_generator(static_cast<JS::AsyncGenerator&>(object), seen_objects);
|
2020-12-04 22:58:10 +00:00
|
|
|
if (object.is_typed_array())
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_typed_array(static_cast<JS::TypedArrayBase&>(object), seen_objects);
|
2021-01-01 16:46:39 +00:00
|
|
|
if (is<JS::BooleanObject>(object))
|
2022-06-30 18:57:59 +00:00
|
|
|
return print_boolean_object(static_cast<JS::BooleanObject&>(object), seen_objects);
|
|
|
|
if (is<JS::NumberObject>(object))
|
|
|
|
return print_number_object(static_cast<JS::NumberObject&>(object), seen_objects);
|
|
|
|
if (is<JS::StringObject>(object))
|
|
|
|
return print_string_object(static_cast<JS::StringObject&>(object), seen_objects);
|
2021-07-14 20:59:49 +00:00
|
|
|
if (is<JS::Temporal::Calendar>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_calendar(static_cast<JS::Temporal::Calendar&>(object), seen_objects);
|
2021-07-15 23:17:01 +00:00
|
|
|
if (is<JS::Temporal::Duration>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_duration(static_cast<JS::Temporal::Duration&>(object), seen_objects);
|
2021-07-07 16:43:17 +00:00
|
|
|
if (is<JS::Temporal::Instant>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_instant(static_cast<JS::Temporal::Instant&>(object), seen_objects);
|
2021-07-22 19:06:27 +00:00
|
|
|
if (is<JS::Temporal::PlainDate>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_plain_date(static_cast<JS::Temporal::PlainDate&>(object), seen_objects);
|
2021-07-22 19:07:16 +00:00
|
|
|
if (is<JS::Temporal::PlainDateTime>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_plain_date_time(static_cast<JS::Temporal::PlainDateTime&>(object), seen_objects);
|
2021-09-06 22:02:33 +00:00
|
|
|
if (is<JS::Temporal::PlainMonthDay>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_plain_month_day(static_cast<JS::Temporal::PlainMonthDay&>(object), seen_objects);
|
2021-07-28 18:29:45 +00:00
|
|
|
if (is<JS::Temporal::PlainTime>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_plain_time(static_cast<JS::Temporal::PlainTime&>(object), seen_objects);
|
2021-09-06 21:57:25 +00:00
|
|
|
if (is<JS::Temporal::PlainYearMonth>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_plain_year_month(static_cast<JS::Temporal::PlainYearMonth&>(object), seen_objects);
|
2021-07-06 22:56:32 +00:00
|
|
|
if (is<JS::Temporal::TimeZone>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_time_zone(static_cast<JS::Temporal::TimeZone&>(object), seen_objects);
|
2021-08-01 17:16:47 +00:00
|
|
|
if (is<JS::Temporal::ZonedDateTime>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_temporal_zoned_date_time(static_cast<JS::Temporal::ZonedDateTime&>(object), seen_objects);
|
2021-08-25 02:38:08 +00:00
|
|
|
if (is<JS::Intl::DisplayNames>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_display_names(static_cast<JS::Intl::DisplayNames&>(object), seen_objects);
|
2021-09-02 12:32:55 +00:00
|
|
|
if (is<JS::Intl::Locale>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_locale(static_cast<JS::Intl::Locale&>(object), seen_objects);
|
2021-09-06 12:44:54 +00:00
|
|
|
if (is<JS::Intl::ListFormat>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_list_format(static_cast<JS::Intl::ListFormat&>(object), seen_objects);
|
2021-09-10 11:30:45 +00:00
|
|
|
if (is<JS::Intl::NumberFormat>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_number_format(static_cast<JS::Intl::NumberFormat&>(object), seen_objects);
|
2021-11-28 23:05:32 +00:00
|
|
|
if (is<JS::Intl::DateTimeFormat>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_date_time_format(static_cast<JS::Intl::DateTimeFormat&>(object), seen_objects);
|
2022-01-25 17:05:20 +00:00
|
|
|
if (is<JS::Intl::RelativeTimeFormat>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_relative_time_format(static_cast<JS::Intl::RelativeTimeFormat&>(object), seen_objects);
|
2022-01-28 18:23:30 +00:00
|
|
|
if (is<JS::Intl::PluralRules>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_plural_rules(static_cast<JS::Intl::PluralRules&>(object), seen_objects);
|
2021-09-07 13:47:00 +00:00
|
|
|
if (is<JS::Intl::Collator>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_collator(static_cast<JS::Intl::Collator&>(object), seen_objects);
|
2022-01-29 21:50:40 +00:00
|
|
|
if (is<JS::Intl::Segmenter>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_segmenter(static_cast<JS::Intl::Segmenter&>(object), seen_objects);
|
2022-01-29 23:32:57 +00:00
|
|
|
if (is<JS::Intl::Segments>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_segments(static_cast<JS::Intl::Segments&>(object), seen_objects);
|
2022-06-30 19:20:41 +00:00
|
|
|
if (is<JS::Intl::DurationFormat>(object))
|
2022-06-30 18:30:18 +00:00
|
|
|
return print_intl_duration_format(static_cast<JS::Intl::DurationFormat&>(object), seen_objects);
|
2020-03-31 17:43:45 +00:00
|
|
|
return print_object(object, seen_objects);
|
|
|
|
}
|
2020-03-26 11:26:11 +00:00
|
|
|
|
|
|
|
if (value.is_string())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[32;1m");
|
2020-06-06 00:14:10 +00:00
|
|
|
else if (value.is_number() || value.is_bigint())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[35;1m");
|
2020-03-26 11:26:11 +00:00
|
|
|
else if (value.is_boolean())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[33;1m");
|
2020-03-26 13:54:43 +00:00
|
|
|
else if (value.is_null())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[33;1m");
|
2020-03-26 13:54:43 +00:00
|
|
|
else if (value.is_undefined())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[34;1m");
|
2020-03-26 11:26:11 +00:00
|
|
|
if (value.is_string())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\"");
|
2020-10-12 16:03:07 +00:00
|
|
|
else if (value.is_negative_zero())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("-");
|
|
|
|
js_out("{}", value.to_string_without_side_effects());
|
2020-03-26 11:26:11 +00:00
|
|
|
if (value.is_string())
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\"");
|
|
|
|
js_out("\033[0m");
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print(JS::Value value)
|
|
|
|
{
|
|
|
|
HashTable<JS::Object*> seen_objects;
|
|
|
|
print_value(value, seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln();
|
2020-03-26 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 22:58:50 +00:00
|
|
|
static bool write_to_file(String const& path)
|
2020-04-02 15:52:40 +00:00
|
|
|
{
|
2021-01-12 18:21:59 +00:00
|
|
|
int fd = open(path.characters(), O_WRONLY | O_CREAT | O_TRUNC, 0666);
|
2022-06-30 18:34:38 +00:00
|
|
|
for (size_t i = 0; i < g_repl_statements.size(); i++) {
|
|
|
|
auto line = g_repl_statements[i];
|
|
|
|
if (line.length() && i != g_repl_statements.size() - 1) {
|
2020-04-02 15:52:40 +00:00
|
|
|
ssize_t nwritten = write(fd, line.characters(), line.length());
|
|
|
|
if (nwritten < 0) {
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-06-30 18:34:38 +00:00
|
|
|
if (i != g_repl_statements.size() - 1) {
|
2020-04-02 15:52:40 +00:00
|
|
|
char ch = '\n';
|
|
|
|
ssize_t nwritten = write(fd, &ch, 1);
|
|
|
|
if (nwritten != 1) {
|
|
|
|
perror("write");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-10-24 12:33:56 +00:00
|
|
|
static bool parse_and_run(JS::Interpreter& interpreter, StringView source, StringView source_name)
|
2020-05-14 15:29:24 +00:00
|
|
|
{
|
2022-01-16 12:16:04 +00:00
|
|
|
enum class ReturnEarly {
|
|
|
|
No,
|
|
|
|
Yes,
|
|
|
|
};
|
2020-05-14 15:29:24 +00:00
|
|
|
|
2022-01-16 12:16:04 +00:00
|
|
|
JS::ThrowCompletionOr<JS::Value> result { JS::js_undefined() };
|
2020-05-14 15:29:24 +00:00
|
|
|
|
2022-01-24 09:13:05 +00:00
|
|
|
auto run_script_or_module = [&](auto& script_or_module) {
|
2022-01-16 12:16:04 +00:00
|
|
|
if (s_dump_ast)
|
2022-01-24 09:13:05 +00:00
|
|
|
script_or_module->parse_node().dump(0);
|
2022-01-08 20:28:27 +00:00
|
|
|
|
2021-10-24 11:34:46 +00:00
|
|
|
if (JS::Bytecode::g_dump_bytecode || s_run_bytecode) {
|
2022-02-12 16:24:08 +00:00
|
|
|
auto executable_result = JS::Bytecode::Generator::generate(script_or_module->parse_node());
|
|
|
|
if (executable_result.is_error()) {
|
2022-08-16 19:33:17 +00:00
|
|
|
result = g_vm->throw_completion<JS::InternalError>(executable_result.error().to_string());
|
2022-02-12 16:24:08 +00:00
|
|
|
return ReturnEarly::No;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto executable = executable_result.release_value();
|
2022-01-31 12:25:39 +00:00
|
|
|
executable->name = source_name;
|
2021-06-13 16:10:20 +00:00
|
|
|
if (s_opt_bytecode) {
|
|
|
|
auto& passes = JS::Bytecode::Interpreter::optimization_pipeline();
|
2022-01-31 12:25:39 +00:00
|
|
|
passes.perform(*executable);
|
2021-06-13 16:10:20 +00:00
|
|
|
dbgln("Optimisation passes took {}us", passes.elapsed());
|
|
|
|
}
|
|
|
|
|
2021-10-24 11:34:46 +00:00
|
|
|
if (JS::Bytecode::g_dump_bytecode)
|
2022-01-31 12:25:39 +00:00
|
|
|
executable->dump();
|
2021-06-10 19:04:12 +00:00
|
|
|
|
|
|
|
if (s_run_bytecode) {
|
2022-08-22 18:35:23 +00:00
|
|
|
JS::Bytecode::Interpreter bytecode_interpreter(interpreter.realm());
|
2022-04-02 07:23:13 +00:00
|
|
|
auto result_or_error = bytecode_interpreter.run_and_return_frame(*executable, nullptr);
|
|
|
|
if (result_or_error.value.is_error())
|
|
|
|
result = result_or_error.value.release_error();
|
|
|
|
else
|
|
|
|
result = result_or_error.frame->registers[0];
|
2021-06-10 19:04:32 +00:00
|
|
|
} else {
|
2022-01-16 12:16:04 +00:00
|
|
|
return ReturnEarly::Yes;
|
2021-06-10 19:04:12 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-01-24 09:13:05 +00:00
|
|
|
result = interpreter.run(*script_or_module);
|
2022-01-16 12:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ReturnEarly::No;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!s_as_module) {
|
|
|
|
auto script_or_error = JS::Script::parse(source, interpreter.realm(), source_name);
|
|
|
|
if (script_or_error.is_error()) {
|
|
|
|
auto error = script_or_error.error()[0];
|
|
|
|
auto hint = error.source_location_hint(source);
|
|
|
|
if (!hint.is_empty())
|
|
|
|
outln("{}", hint);
|
2022-07-16 05:45:51 +00:00
|
|
|
outln("{}", error.to_string());
|
2022-08-16 19:33:17 +00:00
|
|
|
result = interpreter.vm().throw_completion<JS::SyntaxError>(error.to_string());
|
2022-01-16 12:16:04 +00:00
|
|
|
} else {
|
2022-01-24 09:13:05 +00:00
|
|
|
auto return_early = run_script_or_module(script_or_error.value());
|
2022-01-16 12:16:04 +00:00
|
|
|
if (return_early == ReturnEarly::Yes)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto module_or_error = JS::SourceTextModule::parse(source, interpreter.realm(), source_name);
|
|
|
|
if (module_or_error.is_error()) {
|
|
|
|
auto error = module_or_error.error()[0];
|
|
|
|
auto hint = error.source_location_hint(source);
|
|
|
|
if (!hint.is_empty())
|
|
|
|
outln("{}", hint);
|
|
|
|
outln(error.to_string());
|
2022-08-16 19:33:17 +00:00
|
|
|
result = interpreter.vm().throw_completion<JS::SyntaxError>(error.to_string());
|
2022-01-16 12:16:04 +00:00
|
|
|
} else {
|
2022-01-24 09:13:05 +00:00
|
|
|
auto return_early = run_script_or_module(module_or_error.value());
|
2022-01-16 12:16:04 +00:00
|
|
|
if (return_early == ReturnEarly::Yes)
|
|
|
|
return true;
|
2021-06-10 19:04:12 +00:00
|
|
|
}
|
2020-05-14 15:29:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 14:12:41 +00:00
|
|
|
auto handle_exception = [&](JS::Value thrown_value) {
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("Uncaught exception: ");
|
2022-02-07 14:12:41 +00:00
|
|
|
print(thrown_value);
|
|
|
|
|
|
|
|
if (!thrown_value.is_object() || !is<JS::Error>(thrown_value.as_object()))
|
|
|
|
return;
|
|
|
|
auto& traceback = static_cast<JS::Error const&>(thrown_value.as_object()).traceback();
|
2021-04-24 16:15:02 +00:00
|
|
|
if (traceback.size() > 1) {
|
2020-11-08 12:58:49 +00:00
|
|
|
unsigned repetitions = 0;
|
2021-04-24 16:15:02 +00:00
|
|
|
for (size_t i = 0; i < traceback.size(); ++i) {
|
|
|
|
auto& traceback_frame = traceback[i];
|
|
|
|
if (i + 1 < traceback.size()) {
|
|
|
|
auto& next_traceback_frame = traceback[i + 1];
|
|
|
|
if (next_traceback_frame.function_name == traceback_frame.function_name) {
|
|
|
|
repetitions++;
|
|
|
|
continue;
|
|
|
|
}
|
2020-11-08 12:58:49 +00:00
|
|
|
}
|
|
|
|
if (repetitions > 4) {
|
|
|
|
// If more than 5 (1 + >4) consecutive function calls with the same name, print
|
|
|
|
// the name only once and show the number of repetitions instead. This prevents
|
|
|
|
// printing ridiculously large call stacks of recursive functions.
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln(" -> {}", traceback_frame.function_name);
|
|
|
|
js_outln(" {} more calls", repetitions);
|
2020-11-08 12:58:49 +00:00
|
|
|
} else {
|
|
|
|
for (size_t j = 0; j < repetitions + 1; ++j)
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln(" -> {}", traceback_frame.function_name);
|
2020-11-08 12:58:49 +00:00
|
|
|
}
|
|
|
|
repetitions = 0;
|
|
|
|
}
|
2020-06-02 13:12:04 +00:00
|
|
|
}
|
2021-01-29 08:16:06 +00:00
|
|
|
};
|
|
|
|
|
2022-01-16 01:05:32 +00:00
|
|
|
if (!result.is_error())
|
2022-06-30 18:34:38 +00:00
|
|
|
g_last_value = JS::make_handle(result.value());
|
2022-01-16 01:05:32 +00:00
|
|
|
|
2022-01-08 20:28:27 +00:00
|
|
|
if (result.is_error()) {
|
2022-02-07 14:12:41 +00:00
|
|
|
VERIFY(result.throw_completion().value().has_value());
|
|
|
|
handle_exception(*result.release_error().value());
|
2021-04-11 22:08:28 +00:00
|
|
|
return false;
|
2022-01-08 20:28:27 +00:00
|
|
|
} else if (s_print_last_result) {
|
|
|
|
print(result.value());
|
2021-01-29 08:16:06 +00:00
|
|
|
}
|
2020-05-14 15:29:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-08-21 18:24:32 +00:00
|
|
|
static JS::ThrowCompletionOr<JS::Value> load_ini_impl(JS::VM& vm)
|
2022-06-06 17:51:02 +00:00
|
|
|
{
|
2022-08-21 18:24:32 +00:00
|
|
|
auto& realm = *vm.current_realm();
|
2022-08-15 23:20:49 +00:00
|
|
|
|
2022-08-21 13:00:56 +00:00
|
|
|
auto filename = TRY(vm.argument(0).to_string(vm));
|
2022-06-06 17:51:02 +00:00
|
|
|
auto file = Core::File::construct(filename);
|
|
|
|
if (!file->open(Core::OpenMode::ReadOnly))
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<JS::Error>(String::formatted("Failed to open '{}': {}", filename, file->error_string()));
|
2022-06-06 17:51:02 +00:00
|
|
|
|
|
|
|
auto config_file = MUST(Core::ConfigFile::open(filename, file->fd()));
|
2022-08-26 23:54:55 +00:00
|
|
|
auto* object = JS::Object::create(realm, realm.intrinsics().object_prototype());
|
2022-06-06 17:51:02 +00:00
|
|
|
for (auto const& group : config_file->groups()) {
|
2022-08-26 23:54:55 +00:00
|
|
|
auto* group_object = JS::Object::create(realm, realm.intrinsics().object_prototype());
|
2022-06-06 17:51:02 +00:00
|
|
|
for (auto const& key : config_file->keys(group)) {
|
|
|
|
auto entry = config_file->read_entry(group, key);
|
|
|
|
group_object->define_direct_property(key, js_string(vm, move(entry)), JS::Attribute::Enumerable | JS::Attribute::Configurable | JS::Attribute::Writable);
|
|
|
|
}
|
|
|
|
object->define_direct_property(group, group_object, JS::Attribute::Enumerable | JS::Attribute::Configurable | JS::Attribute::Writable);
|
|
|
|
}
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2022-08-21 18:24:32 +00:00
|
|
|
static JS::ThrowCompletionOr<JS::Value> load_json_impl(JS::VM& vm)
|
2021-09-16 19:48:07 +00:00
|
|
|
{
|
2022-08-21 13:00:56 +00:00
|
|
|
auto filename = TRY(vm.argument(0).to_string(vm));
|
2021-09-16 19:48:07 +00:00
|
|
|
auto file = Core::File::construct(filename);
|
2021-10-29 21:13:18 +00:00
|
|
|
if (!file->open(Core::OpenMode::ReadOnly))
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<JS::Error>(String::formatted("Failed to open '{}': {}", filename, file->error_string()));
|
2021-09-16 19:48:07 +00:00
|
|
|
auto file_contents = file->read_all();
|
|
|
|
auto json = JsonValue::from_string(file_contents);
|
2021-11-15 00:46:51 +00:00
|
|
|
if (json.is_error())
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<JS::SyntaxError>(JS::ErrorType::JsonMalformed);
|
2022-08-21 18:24:32 +00:00
|
|
|
return JS::JSONObject::parse_json_value(vm, json.value());
|
2021-09-16 19:48:07 +00:00
|
|
|
}
|
|
|
|
|
2022-08-22 17:56:16 +00:00
|
|
|
void ReplObject::initialize_global_object(JS::Realm& realm)
|
2020-04-18 11:18:06 +00:00
|
|
|
{
|
2022-08-22 17:56:16 +00:00
|
|
|
Base::initialize_global_object(realm);
|
2021-07-05 23:15:08 +00:00
|
|
|
define_direct_property("global", this, JS::Attribute::Enumerable);
|
2021-07-05 22:12:54 +00:00
|
|
|
u8 attr = JS::Attribute::Configurable | JS::Attribute::Writable | JS::Attribute::Enumerable;
|
2022-08-22 20:47:35 +00:00
|
|
|
define_native_function(realm, "exit", exit_interpreter, 0, attr);
|
|
|
|
define_native_function(realm, "help", repl_help, 0, attr);
|
|
|
|
define_native_function(realm, "save", save_to_file, 1, attr);
|
|
|
|
define_native_function(realm, "loadINI", load_ini, 1, attr);
|
|
|
|
define_native_function(realm, "loadJSON", load_json, 1, attr);
|
|
|
|
define_native_function(realm, "print", print, 1, attr);
|
2022-01-16 01:05:32 +00:00
|
|
|
|
|
|
|
define_native_accessor(
|
2022-08-22 20:47:35 +00:00
|
|
|
realm,
|
2022-01-16 01:05:32 +00:00
|
|
|
"_",
|
2022-08-22 10:48:08 +00:00
|
|
|
[](JS::VM&) {
|
2022-06-30 18:34:38 +00:00
|
|
|
return g_last_value.value();
|
2022-01-16 01:05:32 +00:00
|
|
|
},
|
2022-08-22 10:48:08 +00:00
|
|
|
[](JS::VM& vm) -> JS::ThrowCompletionOr<JS::Value> {
|
|
|
|
auto& global_object = vm.get_global_object();
|
2022-01-16 01:05:32 +00:00
|
|
|
VERIFY(is<ReplObject>(global_object));
|
|
|
|
outln("Disable writing last value to '_'");
|
|
|
|
|
|
|
|
// We must delete first otherwise this setter gets called recursively.
|
|
|
|
TRY(global_object.internal_delete(JS::PropertyKey { "_" }));
|
|
|
|
|
|
|
|
auto value = vm.argument(0);
|
|
|
|
TRY(global_object.internal_set(JS::PropertyKey { "_" }, value, &global_object));
|
|
|
|
return value;
|
|
|
|
},
|
|
|
|
attr);
|
2020-04-01 19:20:32 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::save_to_file)
|
2020-04-02 15:52:40 +00:00
|
|
|
{
|
2020-09-27 16:36:49 +00:00
|
|
|
if (!vm.argument_count())
|
2020-04-02 15:52:40 +00:00
|
|
|
return JS::Value(false);
|
2020-09-27 16:36:49 +00:00
|
|
|
String save_path = vm.argument(0).to_string_without_side_effects();
|
2022-07-11 17:32:29 +00:00
|
|
|
if (write_to_file(save_path)) {
|
2020-04-02 15:52:40 +00:00
|
|
|
return JS::Value(true);
|
|
|
|
}
|
|
|
|
return JS::Value(false);
|
|
|
|
}
|
2020-04-13 13:04:24 +00:00
|
|
|
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::exit_interpreter)
|
2020-04-01 19:20:32 +00:00
|
|
|
{
|
2020-09-27 16:36:49 +00:00
|
|
|
if (!vm.argument_count())
|
2020-04-01 19:20:32 +00:00
|
|
|
exit(0);
|
2022-08-21 13:00:56 +00:00
|
|
|
exit(TRY(vm.argument(0).to_number(vm)).as_double());
|
2020-04-01 19:20:32 +00:00
|
|
|
}
|
2020-04-13 13:04:24 +00:00
|
|
|
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::repl_help)
|
2020-04-01 19:20:32 +00:00
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln("REPL commands:");
|
|
|
|
js_outln(" exit(code): exit the REPL with specified code. Defaults to 0.");
|
|
|
|
js_outln(" help(): display this menu");
|
2022-07-09 23:08:05 +00:00
|
|
|
js_outln(" loadINI(file): load the given file as INI.");
|
|
|
|
js_outln(" loadJSON(file): load the given file as JSON.");
|
|
|
|
js_outln(" print(value): pretty-print the given JS value.");
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln(" save(file): write REPL input history to the given file. For example: save(\"foo.txt\")");
|
2020-04-13 20:08:54 +00:00
|
|
|
return JS::js_undefined();
|
2020-04-01 19:20:32 +00:00
|
|
|
}
|
|
|
|
|
2022-06-06 17:51:02 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::load_ini)
|
|
|
|
{
|
2022-08-21 18:24:32 +00:00
|
|
|
return load_ini_impl(vm);
|
2022-06-06 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::load_json)
|
2021-09-16 19:48:07 +00:00
|
|
|
{
|
2022-08-21 18:24:32 +00:00
|
|
|
return load_json_impl(vm);
|
2021-09-16 19:48:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-14 08:34:50 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ReplObject::print)
|
|
|
|
{
|
|
|
|
::print(vm.argument(0));
|
|
|
|
return JS::js_undefined();
|
|
|
|
}
|
|
|
|
|
2022-08-22 17:56:16 +00:00
|
|
|
void ScriptObject::initialize_global_object(JS::Realm& realm)
|
2021-05-25 22:50:18 +00:00
|
|
|
{
|
2022-08-22 17:56:16 +00:00
|
|
|
Base::initialize_global_object(realm);
|
2021-07-05 23:15:08 +00:00
|
|
|
define_direct_property("global", this, JS::Attribute::Enumerable);
|
2021-07-05 22:12:54 +00:00
|
|
|
u8 attr = JS::Attribute::Configurable | JS::Attribute::Writable | JS::Attribute::Enumerable;
|
2022-08-22 20:47:35 +00:00
|
|
|
define_native_function(realm, "loadINI", load_ini, 1, attr);
|
|
|
|
define_native_function(realm, "loadJSON", load_json, 1, attr);
|
|
|
|
define_native_function(realm, "print", print, 1, attr);
|
2021-05-25 22:50:18 +00:00
|
|
|
}
|
|
|
|
|
2022-06-06 17:51:02 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ScriptObject::load_ini)
|
|
|
|
{
|
2022-08-21 18:24:32 +00:00
|
|
|
return load_ini_impl(vm);
|
2022-06-06 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 21:13:18 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ScriptObject::load_json)
|
2021-09-16 19:48:07 +00:00
|
|
|
{
|
2022-08-21 18:24:32 +00:00
|
|
|
return load_json_impl(vm);
|
2021-09-16 19:48:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-14 08:34:50 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ScriptObject::print)
|
|
|
|
{
|
|
|
|
::print(vm.argument(0));
|
|
|
|
return JS::js_undefined();
|
|
|
|
}
|
|
|
|
|
2020-08-10 21:48:37 +00:00
|
|
|
static void repl(JS::Interpreter& interpreter)
|
2020-03-25 22:10:29 +00:00
|
|
|
{
|
2020-05-25 12:27:07 +00:00
|
|
|
while (!s_fail_repl) {
|
2020-03-25 22:10:29 +00:00
|
|
|
String piece = read_next_piece();
|
2022-03-07 17:11:13 +00:00
|
|
|
if (Utf8View { piece }.trim(JS::whitespace_characters).is_empty())
|
2020-03-31 11:29:42 +00:00
|
|
|
continue;
|
2022-03-07 17:11:13 +00:00
|
|
|
|
2022-06-30 18:34:38 +00:00
|
|
|
g_repl_statements.append(piece);
|
2022-07-11 17:32:29 +00:00
|
|
|
parse_and_run(interpreter, piece, "REPL"sv);
|
2020-03-25 22:10:29 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-09 20:58:27 +00:00
|
|
|
|
2020-04-24 16:59:16 +00:00
|
|
|
static Function<void()> interrupt_interpreter;
|
2020-08-10 21:48:37 +00:00
|
|
|
static void sigint_handler()
|
2020-04-24 16:59:16 +00:00
|
|
|
{
|
|
|
|
interrupt_interpreter();
|
|
|
|
}
|
|
|
|
|
2020-05-04 14:09:05 +00:00
|
|
|
class ReplConsoleClient final : public JS::ConsoleClient {
|
|
|
|
public:
|
|
|
|
ReplConsoleClient(JS::Console& console)
|
|
|
|
: ConsoleClient(console)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-08 19:24:17 +00:00
|
|
|
virtual void clear() override
|
2020-05-04 14:09:05 +00:00
|
|
|
{
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("\033[3J\033[H\033[2J");
|
2021-12-22 12:32:15 +00:00
|
|
|
m_group_stack_depth = 0;
|
2020-05-04 14:09:05 +00:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
2021-04-18 15:08:14 +00:00
|
|
|
|
2021-12-22 12:32:15 +00:00
|
|
|
virtual void end_group() override
|
2020-05-04 14:09:05 +00:00
|
|
|
{
|
2021-12-22 12:32:15 +00:00
|
|
|
if (m_group_stack_depth > 0)
|
|
|
|
m_group_stack_depth--;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2.3. Printer(logLevel, args[, options]), https://console.spec.whatwg.org/#printer
|
|
|
|
virtual JS::ThrowCompletionOr<JS::Value> printer(JS::Console::LogLevel log_level, PrinterArguments arguments) override
|
|
|
|
{
|
2022-07-11 17:32:29 +00:00
|
|
|
String indent = String::repeated(" "sv, m_group_stack_depth);
|
2021-12-22 12:32:15 +00:00
|
|
|
|
2021-12-10 13:48:38 +00:00
|
|
|
if (log_level == JS::Console::LogLevel::Trace) {
|
|
|
|
auto trace = arguments.get<JS::Console::Trace>();
|
|
|
|
StringBuilder builder;
|
|
|
|
if (!trace.label.is_empty())
|
2021-12-22 12:32:15 +00:00
|
|
|
builder.appendff("{}\033[36;1m{}\033[0m\n", indent, trace.label);
|
2021-12-10 13:48:38 +00:00
|
|
|
|
|
|
|
for (auto& function_name : trace.stack)
|
2021-12-22 12:32:15 +00:00
|
|
|
builder.appendff("{}-> {}\n", indent, function_name);
|
2021-12-10 13:48:38 +00:00
|
|
|
|
|
|
|
js_outln("{}", builder.string_view());
|
|
|
|
return JS::js_undefined();
|
2020-05-04 14:09:05 +00:00
|
|
|
}
|
2021-04-18 15:08:14 +00:00
|
|
|
|
2021-12-22 12:32:15 +00:00
|
|
|
if (log_level == JS::Console::LogLevel::Group || log_level == JS::Console::LogLevel::GroupCollapsed) {
|
|
|
|
auto group = arguments.get<JS::Console::Group>();
|
|
|
|
js_outln("{}\033[36;1m{}\033[0m", indent, group.label);
|
|
|
|
m_group_stack_depth++;
|
|
|
|
return JS::js_undefined();
|
|
|
|
}
|
|
|
|
|
2022-07-11 20:10:18 +00:00
|
|
|
auto output = String::join(' ', arguments.get<JS::MarkedVector<JS::Value>>());
|
2021-12-10 12:26:25 +00:00
|
|
|
m_console.output_debug_message(log_level, output);
|
|
|
|
|
|
|
|
switch (log_level) {
|
|
|
|
case JS::Console::LogLevel::Debug:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}\033[36;1m{}\033[0m", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
case JS::Console::LogLevel::Error:
|
2021-12-08 19:43:29 +00:00
|
|
|
case JS::Console::LogLevel::Assert:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}\033[31;1m{}\033[0m", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
case JS::Console::LogLevel::Info:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}(i) {}", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
case JS::Console::LogLevel::Log:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}{}", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
case JS::Console::LogLevel::Warn:
|
2021-12-08 19:12:06 +00:00
|
|
|
case JS::Console::LogLevel::CountReset:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}\033[33;1m{}\033[0m", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-12-22 12:32:15 +00:00
|
|
|
js_outln("{}{}", indent, output);
|
2021-12-10 12:26:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return JS::js_undefined();
|
|
|
|
}
|
2021-12-22 12:32:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_group_stack_depth { 0 };
|
2020-05-04 14:09:05 +00:00
|
|
|
};
|
|
|
|
|
2021-11-22 19:25:30 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2020-03-07 18:42:11 +00:00
|
|
|
{
|
2021-11-22 20:41:58 +00:00
|
|
|
#ifdef __serenity__
|
2021-12-29 18:10:12 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath wpath cpath tty sigaction"));
|
2021-11-22 20:41:58 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-16 18:18:46 +00:00
|
|
|
bool gc_on_every_allocation = false;
|
2020-04-30 20:37:50 +00:00
|
|
|
bool disable_syntax_highlight = false;
|
2022-02-09 12:53:49 +00:00
|
|
|
StringView evaluate_script;
|
2021-11-26 21:32:37 +00:00
|
|
|
Vector<StringView> script_paths;
|
2020-03-12 09:51:41 +00:00
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 15:22:58 +00:00
|
|
|
args_parser.set_general_help("This is a JavaScript interpreter.");
|
2020-04-26 14:19:30 +00:00
|
|
|
args_parser.add_option(s_dump_ast, "Dump the AST", "dump-ast", 'A');
|
2021-10-24 11:34:46 +00:00
|
|
|
args_parser.add_option(JS::Bytecode::g_dump_bytecode, "Dump the bytecode", "dump-bytecode", 'd');
|
2021-06-03 08:46:30 +00:00
|
|
|
args_parser.add_option(s_run_bytecode, "Run the bytecode", "run-bytecode", 'b');
|
2021-06-13 16:10:20 +00:00
|
|
|
args_parser.add_option(s_opt_bytecode, "Optimize the bytecode", "optimize-bytecode", 'p');
|
2021-08-14 15:30:37 +00:00
|
|
|
args_parser.add_option(s_as_module, "Treat as module", "as-module", 'm');
|
2020-04-26 14:19:30 +00:00
|
|
|
args_parser.add_option(s_print_last_result, "Print last result", "print-last-result", 'l');
|
2022-02-09 12:53:49 +00:00
|
|
|
args_parser.add_option(s_strip_ansi, "Disable ANSI colors", "disable-ansi-colors", 'i');
|
2021-11-23 21:02:19 +00:00
|
|
|
args_parser.add_option(s_disable_source_location_hints, "Disable source location hints", "disable-source-location-hints", 'h');
|
2020-03-16 18:18:46 +00:00
|
|
|
args_parser.add_option(gc_on_every_allocation, "GC on every allocation", "gc-on-every-allocation", 'g');
|
2020-04-30 20:37:50 +00:00
|
|
|
args_parser.add_option(disable_syntax_highlight, "Disable live syntax highlighting", "no-syntax-highlight", 's');
|
2022-02-09 12:53:49 +00:00
|
|
|
args_parser.add_option(evaluate_script, "Evaluate argument as a script", "evaluate", 'c', "script");
|
2021-06-16 13:55:34 +00:00
|
|
|
args_parser.add_positional_argument(script_paths, "Path to script files", "scripts", Core::ArgsParser::Required::No);
|
2021-11-23 00:03:05 +00:00
|
|
|
args_parser.parse(arguments);
|
2020-03-12 09:51:41 +00:00
|
|
|
|
2020-04-30 20:37:50 +00:00
|
|
|
bool syntax_highlight = !disable_syntax_highlight;
|
|
|
|
|
2022-06-30 18:34:38 +00:00
|
|
|
g_vm = JS::VM::create();
|
|
|
|
g_vm->enable_default_host_import_module_dynamically_hook();
|
2022-01-18 18:39:36 +00:00
|
|
|
|
2021-04-01 20:14:12 +00:00
|
|
|
// NOTE: These will print out both warnings when using something like Promise.reject().catch(...) -
|
|
|
|
// which is, as far as I can tell, correct - a promise is created, rejected without handler, and a
|
|
|
|
// handler then attached to it. The Node.js REPL doesn't warn in this case, so it's something we
|
|
|
|
// might want to revisit at a later point and disable warnings for promises created this way.
|
2022-06-30 18:34:38 +00:00
|
|
|
g_vm->on_promise_unhandled_rejection = [](auto& promise) {
|
2021-04-01 20:14:12 +00:00
|
|
|
// FIXME: Optionally make print_value() to print to stderr
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("WARNING: A promise was rejected without any handlers");
|
|
|
|
js_out(" (result: ");
|
2021-04-01 20:14:12 +00:00
|
|
|
HashTable<JS::Object*> seen_objects;
|
|
|
|
print_value(promise.result(), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln(")");
|
2021-04-01 20:14:12 +00:00
|
|
|
};
|
2022-06-30 18:34:38 +00:00
|
|
|
g_vm->on_promise_rejection_handled = [](auto& promise) {
|
2021-04-01 20:14:12 +00:00
|
|
|
// FIXME: Optionally make print_value() to print to stderr
|
2021-11-23 20:46:28 +00:00
|
|
|
js_out("WARNING: A handler was added to an already rejected promise");
|
|
|
|
js_out(" (result: ");
|
2021-04-01 20:14:12 +00:00
|
|
|
HashTable<JS::Object*> seen_objects;
|
|
|
|
print_value(promise.result(), seen_objects);
|
2021-11-23 20:46:28 +00:00
|
|
|
js_outln(")");
|
2021-04-01 20:14:12 +00:00
|
|
|
};
|
2020-04-24 16:59:16 +00:00
|
|
|
OwnPtr<JS::Interpreter> interpreter;
|
|
|
|
|
2022-02-07 14:12:41 +00:00
|
|
|
// FIXME: Figure out some way to interrupt the interpreter now that vm.exception() is gone.
|
2020-04-24 16:59:16 +00:00
|
|
|
|
2022-02-09 12:53:49 +00:00
|
|
|
if (evaluate_script.is_empty() && script_paths.is_empty()) {
|
2020-05-14 15:29:24 +00:00
|
|
|
s_print_last_result = true;
|
2022-06-30 18:34:38 +00:00
|
|
|
interpreter = JS::Interpreter::create<ReplObject>(*g_vm);
|
2022-08-28 13:20:06 +00:00
|
|
|
auto& console_object = *interpreter->realm().intrinsics().console_object();
|
|
|
|
ReplConsoleClient console_client(console_object.console());
|
|
|
|
console_object.console().set_client(console_client);
|
2020-04-01 19:20:32 +00:00
|
|
|
interpreter->heap().set_should_collect_on_every_allocation(gc_on_every_allocation);
|
|
|
|
|
2021-10-03 11:17:33 +00:00
|
|
|
auto& global_environment = interpreter->realm().global_environment();
|
|
|
|
|
2020-05-26 10:34:39 +00:00
|
|
|
s_editor = Line::Editor::construct();
|
2020-10-25 23:36:06 +00:00
|
|
|
s_editor->load_history(s_history_path);
|
2020-04-11 09:09:10 +00:00
|
|
|
|
|
|
|
signal(SIGINT, [](int) {
|
2020-04-28 20:01:22 +00:00
|
|
|
if (!s_editor->is_editing())
|
|
|
|
sigint_handler();
|
2020-10-25 23:36:06 +00:00
|
|
|
s_editor->save_history(s_history_path);
|
2020-04-11 09:09:10 +00:00
|
|
|
});
|
|
|
|
|
2020-04-26 14:19:30 +00:00
|
|
|
s_editor->on_display_refresh = [syntax_highlight](Line::Editor& editor) {
|
2020-04-09 03:30:45 +00:00
|
|
|
auto stylize = [&](Line::Span span, Line::Style styles) {
|
|
|
|
if (syntax_highlight)
|
|
|
|
editor.stylize(span, styles);
|
|
|
|
};
|
|
|
|
editor.strip_styles();
|
|
|
|
|
2020-04-26 14:19:30 +00:00
|
|
|
size_t open_indents = s_repl_line_level;
|
2020-04-09 03:30:45 +00:00
|
|
|
|
2020-05-26 17:00:30 +00:00
|
|
|
auto line = editor.line();
|
|
|
|
JS::Lexer lexer(line);
|
2020-04-09 03:30:45 +00:00
|
|
|
bool indenters_starting_line = true;
|
|
|
|
for (JS::Token token = lexer.next(); token.type() != JS::TokenType::Eof; token = lexer.next()) {
|
2021-09-01 16:13:53 +00:00
|
|
|
auto length = Utf8View { token.value() }.length();
|
2022-03-06 07:02:15 +00:00
|
|
|
auto start = token.offset();
|
2020-04-09 03:30:45 +00:00
|
|
|
auto end = start + length;
|
|
|
|
if (indenters_starting_line) {
|
|
|
|
if (token.type() != JS::TokenType::ParenClose && token.type() != JS::TokenType::BracketClose && token.type() != JS::TokenType::CurlyClose) {
|
|
|
|
indenters_starting_line = false;
|
|
|
|
} else {
|
|
|
|
--open_indents;
|
2020-04-05 14:03:12 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-09 03:30:45 +00:00
|
|
|
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
switch (token.category()) {
|
|
|
|
case JS::TokenCategory::Invalid:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Red), Line::Style::Underline });
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::Number:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Magenta) });
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::String:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Green), Line::Style::Bold });
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::Punctuation:
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::Operator:
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::Keyword:
|
|
|
|
switch (token.type()) {
|
|
|
|
case JS::TokenType::BoolLiteral:
|
|
|
|
case JS::TokenType::NullLiteral:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Yellow), Line::Style::Bold });
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Blue), Line::Style::Bold });
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::ControlKeyword:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::Cyan), Line::Style::Italic });
|
2020-04-09 03:30:45 +00:00
|
|
|
break;
|
LibJS: Unify syntax highlighting
So far we have three different syntax highlighters for LibJS:
- js's Line::Editor stylization
- JS::MarkupGenerator
- GUI::JSSyntaxHighlighter
This not only caused repetition of most token types in each highlighter
but also a lot of inconsistency regarding the styling of certain tokens:
- JSSyntaxHighlighter was considering TokenType::Period to be an
operator whereas MarkupGenerator categorized it as punctuation.
- MarkupGenerator was considering TokenType::{Break,Case,Continue,
Default,Switch,With} control keywords whereas JSSyntaxHighlighter just
disregarded them
- MarkupGenerator considered some future reserved keywords invalid and
others not. JSSyntaxHighlighter and js disregarded most
Adding a new token type meant adding it to ENUMERATE_JS_TOKENS as well
as each individual highlighter's switch/case construct.
I added a TokenCategory enum, and each TokenType is now associated to a
certain category, which the syntax highlighters then can use for styling
rather than operating on the token type directly. This also makes
changing a token's category everywhere easier, should we need to do that
(e.g. I decided to make TokenType::{Period,QuestionMarkPeriod}
TokenCategory::Operator for now, but we might want to change them to
Punctuation.
2020-10-04 21:28:59 +00:00
|
|
|
case JS::TokenCategory::Identifier:
|
2021-09-01 16:13:53 +00:00
|
|
|
stylize({ start, end, Line::Span::CodepointOriented }, { Line::Style::Foreground(Line::Style::XtermColor::White), Line::Style::Bold });
|
2021-07-05 17:17:08 +00:00
|
|
|
break;
|
2020-04-09 03:30:45 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
editor.set_prompt(prompt_for_level(open_indents));
|
|
|
|
};
|
2020-04-11 09:09:55 +00:00
|
|
|
|
2021-10-03 11:17:33 +00:00
|
|
|
auto complete = [&interpreter, &global_environment](Line::Editor const& editor) -> Vector<Line::CompletionSuggestion> {
|
2020-05-19 04:12:01 +00:00
|
|
|
auto line = editor.line(editor.cursor());
|
|
|
|
|
|
|
|
JS::Lexer lexer { line };
|
|
|
|
enum {
|
|
|
|
Initial,
|
|
|
|
CompleteVariable,
|
|
|
|
CompleteNullProperty,
|
|
|
|
CompleteProperty,
|
|
|
|
} mode { Initial };
|
|
|
|
|
|
|
|
StringView variable_name;
|
|
|
|
StringView property_name;
|
2020-04-11 14:32:15 +00:00
|
|
|
|
2020-04-11 09:09:55 +00:00
|
|
|
// we're only going to complete either
|
|
|
|
// - <N>
|
|
|
|
// where N is part of the name of a variable
|
|
|
|
// - <N>.<P>
|
|
|
|
// where N is the complete name of a variable and
|
|
|
|
// P is part of the name of one of its properties
|
2020-05-19 04:12:01 +00:00
|
|
|
auto js_token = lexer.next();
|
|
|
|
for (; js_token.type() != JS::TokenType::Eof; js_token = lexer.next()) {
|
|
|
|
switch (mode) {
|
|
|
|
case CompleteVariable:
|
|
|
|
switch (js_token.type()) {
|
|
|
|
case JS::TokenType::Period:
|
|
|
|
// ...<name> <dot>
|
|
|
|
mode = CompleteNullProperty;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// not a dot, reset back to initial
|
|
|
|
mode = Initial;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CompleteNullProperty:
|
|
|
|
if (js_token.is_identifier_name()) {
|
|
|
|
// ...<name> <dot> <name>
|
|
|
|
mode = CompleteProperty;
|
|
|
|
property_name = js_token.value();
|
|
|
|
} else {
|
|
|
|
mode = Initial;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CompleteProperty:
|
|
|
|
// something came after the property access, reset to initial
|
|
|
|
case Initial:
|
2021-07-15 22:03:09 +00:00
|
|
|
if (js_token.type() == JS::TokenType::Identifier) {
|
2020-05-19 04:12:01 +00:00
|
|
|
// ...<name>...
|
|
|
|
mode = CompleteVariable;
|
|
|
|
variable_name = js_token.value();
|
|
|
|
} else {
|
|
|
|
mode = Initial;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool last_token_has_trivia = js_token.trivia().length() > 0;
|
|
|
|
|
|
|
|
if (mode == CompleteNullProperty) {
|
|
|
|
mode = CompleteProperty;
|
2022-07-11 17:32:29 +00:00
|
|
|
property_name = ""sv;
|
2020-05-19 04:12:01 +00:00
|
|
|
last_token_has_trivia = false; // <name> <dot> [tab] is sensible to complete.
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == Initial || last_token_has_trivia)
|
|
|
|
return {}; // we do not know how to complete this
|
|
|
|
|
2020-04-19 14:02:28 +00:00
|
|
|
Vector<Line::CompletionSuggestion> results;
|
2020-04-11 09:09:55 +00:00
|
|
|
|
2021-11-10 23:55:02 +00:00
|
|
|
Function<void(JS::Shape const&, StringView)> list_all_properties = [&results, &list_all_properties](JS::Shape const& shape, auto property_pattern) {
|
2021-07-06 22:58:50 +00:00
|
|
|
for (auto const& descriptor : shape.property_table()) {
|
2020-07-08 04:38:46 +00:00
|
|
|
if (!descriptor.key.is_string())
|
|
|
|
continue;
|
|
|
|
auto key = descriptor.key.as_string();
|
|
|
|
if (key.view().starts_with(property_pattern)) {
|
|
|
|
Line::CompletionSuggestion completion { key, Line::CompletionSuggestion::ForSearch };
|
2020-05-02 15:01:09 +00:00
|
|
|
if (!results.contains_slow(completion)) { // hide duplicates
|
2021-06-13 10:00:27 +00:00
|
|
|
results.append(String(key));
|
2022-02-28 13:58:47 +00:00
|
|
|
results.last().invariant_offset = property_pattern.length();
|
2020-04-11 14:32:15 +00:00
|
|
|
}
|
2020-04-11 09:09:55 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-06 22:58:50 +00:00
|
|
|
if (auto const* prototype = shape.prototype()) {
|
2020-04-11 09:09:55 +00:00
|
|
|
list_all_properties(prototype->shape(), property_pattern);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-05-19 04:12:01 +00:00
|
|
|
switch (mode) {
|
|
|
|
case CompleteProperty: {
|
2022-06-30 18:34:38 +00:00
|
|
|
auto reference_or_error = g_vm->resolve_binding(variable_name, &global_environment);
|
2022-01-04 21:54:31 +00:00
|
|
|
if (reference_or_error.is_error())
|
|
|
|
return {};
|
2022-08-21 14:39:13 +00:00
|
|
|
auto value_or_error = reference_or_error.value().get_value(*g_vm);
|
2022-01-04 21:54:31 +00:00
|
|
|
if (value_or_error.is_error())
|
|
|
|
return {};
|
|
|
|
auto variable = value_or_error.value();
|
|
|
|
VERIFY(!variable.is_empty());
|
2020-04-11 09:09:55 +00:00
|
|
|
|
|
|
|
if (!variable.is_object())
|
2020-05-19 04:12:01 +00:00
|
|
|
break;
|
2020-04-11 09:09:55 +00:00
|
|
|
|
2022-08-21 13:00:56 +00:00
|
|
|
auto const* object = MUST(variable.to_object(*g_vm));
|
2021-07-06 22:58:50 +00:00
|
|
|
auto const& shape = object->shape();
|
2020-05-19 04:12:01 +00:00
|
|
|
list_all_properties(shape, property_name);
|
|
|
|
break;
|
2020-04-11 09:09:55 +00:00
|
|
|
}
|
2020-05-19 04:12:01 +00:00
|
|
|
case CompleteVariable: {
|
2022-08-22 18:00:49 +00:00
|
|
|
auto const& variable = interpreter->realm().global_object();
|
2020-05-19 04:12:01 +00:00
|
|
|
list_all_properties(variable.shape(), variable_name);
|
2021-10-03 11:20:15 +00:00
|
|
|
|
2022-03-07 13:02:37 +00:00
|
|
|
for (auto const& name : global_environment.declarative_record().bindings()) {
|
2022-02-28 13:58:47 +00:00
|
|
|
if (name.starts_with(variable_name)) {
|
2021-10-03 11:20:15 +00:00
|
|
|
results.empend(name);
|
2022-02-28 13:58:47 +00:00
|
|
|
results.last().invariant_offset = variable_name.length();
|
|
|
|
}
|
2021-10-03 11:20:15 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 04:12:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-05-19 04:12:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 09:09:55 +00:00
|
|
|
return results;
|
|
|
|
};
|
2020-05-19 04:12:01 +00:00
|
|
|
s_editor->on_tab_complete = move(complete);
|
2020-04-01 19:04:51 +00:00
|
|
|
repl(*interpreter);
|
2020-10-25 23:36:06 +00:00
|
|
|
s_editor->save_history(s_history_path);
|
2020-03-25 22:10:29 +00:00
|
|
|
} else {
|
2022-06-30 18:34:38 +00:00
|
|
|
interpreter = JS::Interpreter::create<ScriptObject>(*g_vm);
|
2022-08-28 13:20:06 +00:00
|
|
|
auto& console_object = *interpreter->realm().intrinsics().console_object();
|
|
|
|
ReplConsoleClient console_client(console_object.console());
|
|
|
|
console_object.console().set_client(console_client);
|
2020-04-01 19:20:32 +00:00
|
|
|
interpreter->heap().set_should_collect_on_every_allocation(gc_on_every_allocation);
|
|
|
|
|
2020-04-24 16:59:16 +00:00
|
|
|
signal(SIGINT, [](int) {
|
|
|
|
sigint_handler();
|
|
|
|
});
|
|
|
|
|
2021-06-16 13:55:34 +00:00
|
|
|
StringBuilder builder;
|
2022-02-09 12:53:49 +00:00
|
|
|
StringView source_name;
|
|
|
|
|
|
|
|
if (evaluate_script.is_empty()) {
|
|
|
|
if (script_paths.size() > 1)
|
|
|
|
warnln("Warning: Multiple files supplied, this will concatenate the sources and resolve modules as if it was the first file");
|
|
|
|
|
|
|
|
for (auto& path : script_paths) {
|
|
|
|
auto file = TRY(Core::File::open(path, Core::OpenMode::ReadOnly));
|
|
|
|
auto file_contents = file->read_all();
|
|
|
|
auto source = StringView { file_contents };
|
2022-04-03 13:31:04 +00:00
|
|
|
|
|
|
|
if (Utf8View { file_contents }.validate()) {
|
|
|
|
builder.append(source);
|
|
|
|
} else {
|
|
|
|
auto* decoder = TextCodec::decoder_for("windows-1252");
|
|
|
|
VERIFY(decoder);
|
|
|
|
|
|
|
|
auto utf8_source = TextCodec::convert_input_to_utf8_using_given_decoder_unless_there_is_a_byte_order_mark(*decoder, source);
|
|
|
|
builder.append(utf8_source);
|
|
|
|
}
|
2022-02-09 12:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
source_name = script_paths[0];
|
|
|
|
} else {
|
|
|
|
builder.append(evaluate_script);
|
|
|
|
source_name = "eval"sv;
|
2020-03-25 22:10:29 +00:00
|
|
|
}
|
2020-03-07 18:42:11 +00:00
|
|
|
|
2022-01-17 17:47:32 +00:00
|
|
|
// We resolve modules as if it is the first file
|
2021-10-24 12:33:56 +00:00
|
|
|
|
2022-02-09 12:53:49 +00:00
|
|
|
if (!parse_and_run(*interpreter, builder.string_view(), source_name))
|
2020-04-13 00:05:21 +00:00
|
|
|
return 1;
|
2020-03-25 22:10:29 +00:00
|
|
|
}
|
2020-03-08 18:59:59 +00:00
|
|
|
|
2020-03-07 18:42:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|