Home
last modified time | relevance | path

Searched refs:abortController (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DcontrolFlowForCatchAndFinally.types84 abortController: Aborter | undefined = undefined;
85 >abortController : Aborter | undefined
91 if (this.abortController !== undefined) {
92 >this.abortController !== undefined : boolean
93 >this.abortController : Aborter | undefined
95 >abortController : Aborter | undefined
98 this.abortController.abort();
99 >this.abortController.abort() : void
100 >this.abortController.abort : () => void
101 >this.abortController : Aborter
[all …]
DcontrolFlowForCatchAndFinally.symbols83 abortController: Aborter | undefined = undefined;
84 >abortController : Symbol(Foo.abortController, Decl(controlFlowForCatchAndFinally.ts, 23, 11))
91 if (this.abortController !== undefined) {
92 >this.abortController : Symbol(Foo.abortController, Decl(controlFlowForCatchAndFinally.ts, 23, 11))
94 >abortController : Symbol(Foo.abortController, Decl(controlFlowForCatchAndFinally.ts, 23, 11))
97 this.abortController.abort();
98 >this.abortController.abort : Symbol(Aborter.abort, Decl(controlFlowForCatchAndFinally.ts, 22, 23))
99 >this.abortController : Symbol(Foo.abortController, Decl(controlFlowForCatchAndFinally.ts, 23, 11))
101 >abortController : Symbol(Foo.abortController, Decl(controlFlowForCatchAndFinally.ts, 23, 11))
104 this.abortController = undefined;
[all …]
DcontrolFlowForCatchAndFinally.js26 abortController: Aborter | undefined = undefined;
29 if (this.abortController !== undefined) {
30 this.abortController.abort();
31 this.abortController = undefined;
34 this.abortController = new Aborter(); property
36 if (this.abortController !== undefined) {
37 this.abortController.abort(); // ok
121 this.abortController = undefined;
126 if (this.abortController !== undefined) {
127 this.abortController.abort();
[all …]
/third_party/typescript/tests/cases/compiler/
DcontrolFlowForCatchAndFinally.ts27 abortController: Aborter | undefined = undefined;
30 if (this.abortController !== undefined) {
31 this.abortController.abort();
32 this.abortController = undefined;
35 this.abortController = new Aborter();
37 if (this.abortController !== undefined) {
38 this.abortController.abort(); // ok
/third_party/node/doc/api/
Dglobals.md45 ### `abortController.abort()`
50 Triggers the abort signal, causing the `abortController.signal` to emit
53 ### `abortController.signal`
68 `abortController.abort()` method is called.
84 The `'abort'` event is emitted when the `abortController.abort()` method
128 when the `abortController.abort()` function has been called.
/third_party/node/lib/internal/bootstrap/
Dpre_execution.js320 const abortController = getOptionValue('--experimental-abortcontroller');
321 if (abortController) {