Updated dists.
This commit is contained in:
parent
aeccbd4d3f
commit
0256c2fece
|
@ -6753,9 +6753,6 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
|
|||
callback(new EFileSystemError('unknown error'));
|
||||
}
|
||||
);
|
||||
};
|
||||
FileSystem.prototype.readdir = function readdir(path, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.stat = function stat(path, callback) {
|
||||
var that = this;
|
||||
|
@ -7061,7 +7058,10 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
|
|||
}
|
||||
);
|
||||
};
|
||||
FileSystem.prototype.utime = function utime(path, atime, mtime, callback) {
|
||||
FileSystem.prototype.readdir = function readdir(path, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.utimes = function utimes(path, atime, mtime, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.rename = function rename(oldpath, newpath, callback) {
|
||||
|
@ -7073,6 +7073,19 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
|
|||
FileSystem.prototype.ftruncate = function ftruncate(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.symlink = function symlink(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.readlink = function readlink(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.realpath = function realpath(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.lstat = function lstat(fd, length, callback) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
return {
|
||||
FileSystem: FileSystem,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -953,9 +953,6 @@ define(function(require) {
|
|||
callback(new EFileSystemError('unknown error'));
|
||||
}
|
||||
);
|
||||
};
|
||||
FileSystem.prototype.readdir = function readdir(path, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.stat = function stat(path, callback) {
|
||||
var that = this;
|
||||
|
@ -1261,7 +1258,10 @@ define(function(require) {
|
|||
}
|
||||
);
|
||||
};
|
||||
FileSystem.prototype.utime = function utime(path, atime, mtime, callback) {
|
||||
FileSystem.prototype.readdir = function readdir(path, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.utimes = function utimes(path, atime, mtime, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.rename = function rename(oldpath, newpath, callback) {
|
||||
|
@ -1273,6 +1273,19 @@ define(function(require) {
|
|||
FileSystem.prototype.ftruncate = function ftruncate(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.symlink = function symlink(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.readlink = function readlink(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.realpath = function realpath(fd, length, callback) {
|
||||
|
||||
};
|
||||
FileSystem.prototype.lstat = function lstat(fd, length, callback) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
return {
|
||||
FileSystem: FileSystem,
|
||||
|
|
Loading…
Reference in New Issue