Home
last modified time | relevance | path

Searched refs:breakOnSigint (Results 1 – 16 of 16) sorted by relevance

/third_party/node/benchmark/vm/
Drun-in-this-context.js7 breakOnSigint: [0, 1], property
13 function main({ n, breakOnSigint, withSigintListener }) { property
14 const options = breakOnSigint ? { breakOnSigint: true } : {};
Drun-in-context.js7 breakOnSigint: [0, 1], property
13 function main({ n, breakOnSigint, withSigintListener }) { property
14 const options = breakOnSigint ? { breakOnSigint: true } : {};
/third_party/node/lib/
Dvm.js119 const { breakOnSigint, args } = getRunInContextArgs(null, options);
120 if (breakOnSigint && process.listenerCount('SIGINT') > 0) {
128 const { breakOnSigint, args } = getRunInContextArgs(
132 if (breakOnSigint && process.listenerCount('SIGINT') > 0) {
163 breakOnSigint = false,
168 validateBoolean(breakOnSigint, 'options.breakOnSigint');
171 breakOnSigint,
176 breakOnSigint,
Drepl.js565 breakOnSigint: self.breakEvalOnSigint, property
/third_party/node/lib/internal/vm/
Dmodule.js216 const { breakOnSigint = false } = options;
217 validateBoolean(breakOnSigint, 'options.breakOnSigint');
226 await this[kWrap].evaluate(timeout, breakOnSigint);
/third_party/node/lib/internal/modules/esm/
Dmodule_job.js192 const breakOnSigint = false;
194 await this.module.evaluate(timeout, breakOnSigint);
/third_party/node/test/sequential/
Dtest-vm-break-on-sigint.js20 vm.runInContext('console.log(1)', ctx, { breakOnSigint: true }); property
/third_party/node/test/parallel/
Dtest-vm-sigint.js22 const options = { breakOnSigint: true }; property
Dtest-vm-sigint-existing-handler.js37 const options = { breakOnSigint: true }; property
Dtest-vm-options-validation.js92 assertErrors({ breakOnSigint: value }, invalidArgType); property
Dtest-vm-module-errors.js205 await m.evaluate({ breakOnSigint: 'a-string' }); property
/third_party/node/doc/api/
Dvm.md177 description: The `breakOnSigint` option is supported now.
189 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
223 Using the `timeout` or `breakOnSigint` options will result in new event loops
240 description: The `breakOnSigint` option is supported now.
252 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
275 `breakOnSigint` scopes in that case.
307 description: The `breakOnSigint` option is supported now.
317 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
587 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
1069 They are included in the `timeout` and `breakOnSigint` scopes in that case.
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V15.md1793 …ithub.com/nodejs/node/commit/890b03ecd6)] - **doc**: improve text for breakOnSigint (Rich Trott) […
DCHANGELOG_V14.md2181 …ithub.com/nodejs/node/commit/47ba12265e)] - **doc**: improve text for breakOnSigint (Rich Trott) […
DCHANGELOG_V8.md5005 …com/nodejs/node/commit/4bcbefccce)] - **test**: add coverage for vm's breakOnSigint option (cjihri…
DCHANGELOG_V12.md5665 …ithub.com/nodejs/node/commit/0c7f18ebd3)] - **test**: test error when breakOnSigint is not a boole…