Index: src/parsing/preparser.cc |
diff --git a/src/parsing/preparser.cc b/src/parsing/preparser.cc |
index 306fb264d1c17116d189d87aefedbcc65a6a8dbf..7c488859486e67b16ab6e84a99dbf32c32011077 100644 |
--- a/src/parsing/preparser.cc |
+++ b/src/parsing/preparser.cc |
@@ -185,10 +185,10 @@ PreParser::Expression PreParser::ParseFunctionLiteral( |
// Function :: |
// '(' FormalParameterList? ')' '{' FunctionBody '}' |
const RuntimeCallStats::CounterId counters[2][2] = { |
- {&RuntimeCallStats::PreParseBackgroundWithVariableResolution, |
- &RuntimeCallStats::PreParseWithVariableResolution}, |
{&RuntimeCallStats::PreParseBackgroundNoVariableResolution, |
- &RuntimeCallStats::PreParseNoVariableResolution}}; |
+ &RuntimeCallStats::PreParseNoVariableResolution}, |
+ {&RuntimeCallStats::PreParseBackgroundWithVariableResolution, |
+ &RuntimeCallStats::PreParseWithVariableResolution}}; |
RuntimeCallTimerScope runtime_timer( |
runtime_call_stats_, |
counters[track_unresolved_variables_][parsing_on_main_thread_]); |