From 13f806b1b0039cc7599d91cbe513a8a3733e429f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 20 Apr 2020 23:53:28 +0100 Subject: [PATCH] LibJS: Rename global_call_fram to global_call_frame Seems to be a typo. --- Libraries/LibJS/Interpreter.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Libraries/LibJS/Interpreter.cpp b/Libraries/LibJS/Interpreter.cpp index 8c740a73ab..577f52df17 100644 --- a/Libraries/LibJS/Interpreter.cpp +++ b/Libraries/LibJS/Interpreter.cpp @@ -51,11 +51,11 @@ Value Interpreter::run(const Statement& statement, ArgumentVector arguments, Sco { if (statement.is_program()) { if (m_call_stack.is_empty()) { - CallFrame global_call_fram; - global_call_fram.this_value = m_global_object; - global_call_fram.function_name = "(global execution context)"; - global_call_fram.environment = heap().allocate(); - m_call_stack.append(move(global_call_fram)); + CallFrame global_call_frame; + global_call_frame.this_value = m_global_object; + global_call_frame.function_name = "(global execution context)"; + global_call_frame.environment = heap().allocate(); + m_call_stack.append(move(global_call_frame)); } }