summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/VM.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/VM.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/VM.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h
index b7898cb265..cd882c6b07 100644
--- a/Userland/Libraries/LibJS/Runtime/VM.h
+++ b/Userland/Libraries/LibJS/Runtime/VM.h
@@ -270,13 +270,13 @@ private:
struct StoredModule {
ScriptOrModule referencing_script_or_module;
- String filepath;
+ String filename;
String type;
NonnullRefPtr<Module> module;
bool has_once_started_linking { false };
};
- StoredModule* get_stored_module(ScriptOrModule const& script_or_module, String const& filepath, String const& type);
+ StoredModule* get_stored_module(ScriptOrModule const& script_or_module, String const& filename, String const& type);
Vector<StoredModule> m_loaded_modules;