diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-08-13 01:23:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-08-13 01:23:32 +0800 |
commit | 04fa96b7c0abba4d7cca03ed12ff3b65b3912e01 (patch) | |
tree | c0c8a2c0e92d0580280f838ba475875c7f82a73c /script/meta/bee | |
parent | c30c5c2e267f6917600afe4f19e1e0d674bad9c6 (diff) | |
download | lua-language-server-04fa96b7c0abba4d7cca03ed12ff3b65b3912e01.zip |
fix #1431
Diffstat (limited to 'script/meta/bee')
-rw-r--r-- | script/meta/bee/filesystem.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/script/meta/bee/filesystem.lua b/script/meta/bee/filesystem.lua index f6cdff79..cba5ff0e 100644 --- a/script/meta/bee/filesystem.lua +++ b/script/meta/bee/filesystem.lua @@ -18,6 +18,10 @@ end function fsPath:filename() end +---@return fs.path +function fsPath:stem() +end + ---@class fs.status local fsStatus = {} @@ -88,4 +92,9 @@ end function fs.copy_file(source, target, options) end +---@param oldPath fs.path +---@param newPath fs.path +function fs.rename(oldPath, newPath) +end + return fs |