nitc :: MModule :: filepath
safe alias to location.file.filepath
location.file.filepath
# The path of the module source, if any # # safe alias to `location.file.filepath` fun filepath: nullable String do var res = self.location.file if res == null then return null return res.filename end