浏览代码

LibJS: Avoid StringView->DeprecatedFlyString conversions in FDI

Andreas Kling 1 年之前
父节点
当前提交
9ccf25fdbe
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h

+ 1 - 1
Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h

@@ -151,7 +151,7 @@ private:
     Vector<FunctionDeclaration const&> m_functions_to_initialize;
     bool m_arguments_object_needed { false };
     Vector<VariableNameToInitialize> m_var_names_to_initialize_binding;
-    Vector<StringView> m_function_names_to_initialize_binding;
+    Vector<DeprecatedFlyString> m_function_names_to_initialize_binding;
 };
 
 template<>