Skip to content

Commit 1f947ee

Browse files
committed
fix format
1 parent 904a081 commit 1f947ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/node_contextify.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,10 +1648,10 @@ 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+
};
16551655

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

0 commit comments

Comments
 (0)