diff --git a/Userland/Libraries/LibJS/Print.cpp b/Userland/Libraries/LibJS/Print.cpp index d3a1dbad37165f..e9c686dfbb8f55 100644 --- a/Userland/Libraries/LibJS/Print.cpp +++ b/Userland/Libraries/LibJS/Print.cpp @@ -471,7 +471,8 @@ ErrorOr print_typed_array(JS::PrintContext& print_context, JS::TypedArrayB TRY(print_value(print_context, JS::Value(JS::typed_array_byte_length(typed_array_record)), seen_objects)); TRY(js_out(print_context, "\n")); - // FIXME: This kinda sucks. + // FIXME: Find a better way to print typed arrays to the console. + // The current solution is limited to 100 lines, is hard to read, and hampers debugging. #define __JS_ENUMERATE(ClassName, snake_name, PrototypeName, ConstructorName, ArrayType) \ if (is(typed_array_base)) { \ TRY(js_out(print_context, "[ ")); \