Lines Matching refs:that
21 const that = this;
22 fs.open(that.path, that.flags, that.mode, (err, fd) => {
24 if (that.autoClose)
25 that.destroy();
27 that.emit('error', err);
29 that.fd = fd;
30 that.emit('open', fd);
31 that.read();
53 const that = this;
54 fs.open(that.path, that.flags, that.mode, function(err, fd) {
56 that.destroy();
57 that.emit('error', err);
59 that.fd = fd;
60 that.emit('open', fd);