| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 551beb2e6239ba0d1cab4c61dce12272335f89e9..a61cc11a6f65a2e7b9f342e079b46c58cf1ba410 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -875,6 +875,8 @@ void JSFunction::JSFunctionPrint(std::ostream& os) { // NOLINT
|
| << shared()->internal_formal_parameter_count();
|
| if (shared()->is_generator()) {
|
| os << "\n - generator";
|
| + } else if (shared()->is_async()) {
|
| + os << "\n - async";
|
| }
|
| os << "\n - context = " << Brief(context());
|
| os << "\n - literals = " << Brief(literals());
|
|
|