comparison src/luan/modules/Boot.luan @ 1497:f04bfbb08721

link_from
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 08 May 2020 16:54:30 -0600
parents 580ee513a4b7
children d9a5405a3102
comparison
equal deleted inserted replaced
1496:6c830be6be98 1497:f04bfbb08721
175 this.mkdir = io.mkdir 175 this.mkdir = io.mkdir
176 this.last_modified = io.file.lastModified 176 this.last_modified = io.file.lastModified
177 this.set_last_modified = io.set_last_modified 177 this.set_last_modified = io.set_last_modified
178 this.length = io.file.length 178 this.length = io.file.length
179 this.rename_to = io.rename_to 179 this.rename_to = io.rename_to
180 this.link_to = io.link_to 180 this.link_from = io.link_from
181 this.symlink_to = io.symlink_to 181 this.symlink_from = io.symlink_from
182 this.is_symbolic_link = io.is_symbolic_link 182 this.is_symbolic_link = io.is_symbolic_link
183 183
184 function this.child(name) 184 function this.child(name)
185 return new_LuanFile( io.child(name) ) 185 return new_LuanFile( io.child(name) )
186 end 186 end