@@ -129,13 +129,13 @@ end
129
129
function Cache .loader (modname )
130
130
local start = uv .hrtime ()
131
131
local modpath , hash = Cache .find (modname )
132
- --- @type function ?, string ?
133
- local chunk , err
134
132
if modpath then
135
- chunk , err = M .load (modpath , { hash = hash })
133
+ local chunk , err = M .load (modpath , { hash = hash })
134
+ M .track (" loader" , start )
135
+ return chunk or error (err )
136
136
end
137
137
M .track (" loader" , start )
138
- return chunk or err or " module " .. modname .. " not found"
138
+ return " \n lazy_loader: module " .. modname .. " not found"
139
139
end
140
140
141
141
--- @param modname string
@@ -154,10 +154,10 @@ function Cache.loader_lib(modname)
154
154
local funcname = dash and modname :sub (dash + 1 ) or modname
155
155
local chunk , err = package.loadlib (modpath , " luaopen_" .. funcname :gsub (" %." , " _" ))
156
156
M .track (" loader_lib" , start )
157
- return chunk or err
157
+ return chunk or error ( err )
158
158
end
159
159
M .track (" loader_lib" , start )
160
- return " module " .. modname .. " not found"
160
+ return " \n lazy_loader_lib: module " .. modname .. " not found"
161
161
end
162
162
163
163
--- @param filename ? string
@@ -337,8 +337,11 @@ function M.lsmod(path)
337
337
t = t or uv .fs_stat (path .. " /" .. name ).type
338
338
--- @type string
339
339
local topname
340
- if name :sub (- 4 ) == " .lua" then
340
+ local ext = name :sub (- 4 )
341
+ if ext == " .lua" or ext == " .dll" then
341
342
topname = name :sub (1 , - 5 )
343
+ elseif name :sub (- 3 ) == " .so" then
344
+ topname = name :sub (1 , - 4 )
342
345
elseif t == " link" or t == " directory" then
343
346
topname = name
344
347
end
0 commit comments