mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
BREAKING(fs): remove Deno.FsWatcher.prototype.rid
(#25444)
Towards #22079
This commit is contained in:
parent
713ed065e7
commit
105c2e336a
4 changed files with 0 additions and 22 deletions
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
|
@ -3849,14 +3849,6 @@ declare namespace Deno {
|
|||
* @category File System
|
||||
*/
|
||||
export interface FsWatcher extends AsyncIterable<FsEvent>, Disposable {
|
||||
/**
|
||||
* The resource id.
|
||||
*
|
||||
* @deprecated This will be removed in Deno 2.0. See the
|
||||
* {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide}
|
||||
* for migration instructions.
|
||||
*/
|
||||
readonly rid: number;
|
||||
/** Stops watching the file system and closes the watcher resource. */
|
||||
close(): void;
|
||||
/**
|
||||
|
|
|
@ -31,15 +31,6 @@ class FsWatcher {
|
|||
this.#rid = op_fs_events_open({ recursive, paths });
|
||||
}
|
||||
|
||||
get rid() {
|
||||
internals.warnOnDeprecatedApi(
|
||||
"Deno.FsWatcher.rid",
|
||||
new Error().stack,
|
||||
"Use `Deno.FsWatcher` instance methods instead.",
|
||||
);
|
||||
return this.#rid;
|
||||
}
|
||||
|
||||
unref() {
|
||||
core.unrefOpPromise(this.#promise);
|
||||
}
|
||||
|
|
|
@ -53,10 +53,6 @@ console.log("Deno.TlsConn.prototype.rid is", tlsConn.rid);
|
|||
|
||||
tlsConn.close();
|
||||
|
||||
const watcher = Deno.watchFs(".");
|
||||
console.log("Deno.FsWatcher.prototype.rid is", watcher.rid);
|
||||
watcher.close();
|
||||
|
||||
try {
|
||||
new Deno.FsFile(0);
|
||||
} catch (error) {
|
||||
|
|
|
@ -10,7 +10,6 @@ Deno.Conn.prototype.rid is undefined
|
|||
Deno.UnixConn.prototype.rid is undefined
|
||||
Deno.TlsListener.prototype.rid is undefined
|
||||
Deno.TlsConn.prototype.rid is undefined
|
||||
Deno.FsWatcher.prototype.rid is undefined
|
||||
Deno.FsFile constructor is illegal
|
||||
Deno.ConnectTlsOptions.(certFile|keyFile) do nothing
|
||||
Deno.ConnectTlsOptions.(certChain|privateKey) do nothing
|
||||
|
|
Loading…
Reference in a new issue