Home
last modified time | relevance | path

Searched refs:prettyPrinted (Results 1 - 3 of 3) sorted by relevance

/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_foozzie_harness_adjust.js19 // Override prettyPrinted with a version that also recusively prints object
21 let origPrettyPrinted = prettyPrinted; function
22 prettyPrinted = function prettyPrinted(value, depth=3) {
37 prettyPrinted(key, depth - 1) +
39 prettyPrinted(value[key], depth - 1)
54 print(prettyPrinted(message))
58 print(prettyPrinted(found));
62 print(prettyPrinted(found));
66 print(prettyPrinted(foun
[all...]
H A Dv8_mock.js13 var prettyPrinted = function prettyPrinted(msg) { return msg; }; function
180 print(prettyPrinted(eval(code)));
182 print(prettyPrinted(e));
189 print(prettyPrinted(msg));
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/resources/
H A Ddifferential_fuzz_library.js34 // For standard cases use original prettyPrinted from mjsunit.
35 const origPrettyPrinted = prettyPrinted; function
37 // Override prettyPrinted with a version that also recusively prints objects
40 prettyPrinted = function prettyPrinted(value, depth=4) {
62 return prettyPrinted(value, depth - 1);
71 return `${key}: ${prettyPrinted(object[key], depth - 1)}`;
97 let str = prettyPrinted(value);

Completed in 2 milliseconds