Index: src/parsing/parser-base.h |
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h |
index 7cee687e9816bd29cb86f857ff7ff3f659f70138..686c53b51a40487b2fd587458118e7253a5122aa 100644 |
--- a/src/parsing/parser-base.h |
+++ b/src/parsing/parser-base.h |
@@ -3891,10 +3891,10 @@ typename ParserBase<Impl>::ExpressionT |
ParserBase<Impl>::ParseArrowFunctionLiteral( |
bool accept_IN, const FormalParametersT& formal_parameters, bool* ok) { |
const RuntimeCallStats::CounterId counters[2][2] = { |
- {&RuntimeCallStats::ParseArrowFunctionLiteral, |
- &RuntimeCallStats::ParseBackgroundArrowFunctionLiteral}, |
- {&RuntimeCallStats::PreParseArrowFunctionLiteral, |
- &RuntimeCallStats::PreParseBackgroundArrowFunctionLiteral}}; |
+ {&RuntimeCallStats::ParseBackgroundArrowFunctionLiteral, |
+ &RuntimeCallStats::ParseArrowFunctionLiteral}, |
+ {&RuntimeCallStats::PreParseBackgroundArrowFunctionLiteral, |
+ &RuntimeCallStats::PreParseArrowFunctionLiteral}}; |
RuntimeCallTimerScope runtime_timer( |
runtime_call_stats_, |
counters[Impl::IsPreParser()][parsing_on_main_thread_]); |