Skip to content

Commit da74e0b

Browse files
committed
fix format
1 parent 904a081 commit da74e0b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/node_contextify.cc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,10 +1648,12 @@ static const auto throws_only_in_cjs_error_messages =
16481648
"the top level bodies of modules"};
16491649

16501650
static const auto maybe_top_level_await_errors =
1651-
std::array<std::string_view, 2>{// example: `func(await 1);`
1652-
"missing ) after argument list",
1653-
// example: `if(await 1)`
1654-
"SyntaxError: Unexpected"};
1651+
std::array<std::string_view, 2>{
1652+
"missing ) after argument list", // example: `func(await 1);`
1653+
"SyntaxError: Unexpected" // example: `if(await 1)`
1654+
};
1655+
1656+
16551657

16561658
// If cached_data is provided, it would be used for the compilation and
16571659
// the on-disk compilation cache from NODE_COMPILE_CACHE (if configured)

0 commit comments

Comments
 (0)