We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ce421 commit 1e98603Copy full SHA for 1e98603
test-app/runtime/src/main/cpp/console/Console.cpp
@@ -304,6 +304,10 @@ void Console::dirCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
304
305
if (propIsFunction) {
306
ss << "()";
307
+ } else if (propertyValue->IsArray()) {
308
+ auto stringResult = buildStringFromArg(isolate, propertyValue);
309
+ std::string jsonStringifiedArray = ArgConverter::ConvertToString(stringResult);
310
+ ss << ": " << jsonStringifiedArray;
311
} else if (propertyValue->IsObject()) {
312
auto obj = propertyValue->ToObject(isolate);
313
auto objString = transformJSObject(isolate, obj);
0 commit comments