suppress Octal literals are not available when targeting ECMAScript 5 and higher.

This commit is contained in:
vvakame
2015-04-29 11:15:25 +09:00
parent 7dea7494db
commit 7faade2b23
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ function FSTest(): void {
FS.symlink('file', 'link');
FS.writeFile('forbidden', 'can\'t touch this');
FS.chmod('forbidden', 0000);
FS.chmod('forbidden', parseInt("0000", 8));
FS.writeFile('file', 'foobar');
FS.truncate('file', 3);