renaming system.maxmem to sys.maxmem

This commit is contained in:
minjaesong
2022-09-01 18:13:13 +09:00
parent b41ff1c834
commit 079641ef1e
16 changed files with 8410 additions and 20 deletions

View File

@@ -168,7 +168,7 @@ class TVDOSFileDescriptor {
}
list() {
return if (!this.isDirectory) undefined else this.driver.listFiles(this)
return (!this.isDirectory) ? undefined : this.driver.listFiles(this)
}
/** When the file does not exist, mkfile() will be called; if you want to make a directory, use mkdir() */
touch() {