Home
last modified time | relevance | path

Searched refs:breakOnSigint (Results 1 – 14 of 14) 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.js130 const { breakOnSigint, args } = getRunInContextArgs(options);
131 if (breakOnSigint && process.listenerCount('SIGINT') > 0) {
139 const { breakOnSigint, args } = getRunInContextArgs(options);
141 if (breakOnSigint && process.listenerCount('SIGINT') > 0) {
172 breakOnSigint = false,
177 validateBoolean(breakOnSigint, 'options.breakOnSigint');
180 breakOnSigint,
181 args: [timeout, displayErrors, breakOnSigint, breakFirstLine]
Drepl.js562 breakOnSigint: self.breakEvalOnSigint property
/third_party/node/lib/internal/vm/
Dmodule.js217 const { breakOnSigint = false } = options;
218 if (typeof breakOnSigint !== 'boolean') {
220 breakOnSigint);
230 await this[kWrap].evaluate(timeout, breakOnSigint);
/third_party/node/lib/internal/modules/esm/
Dmodule_job.js181 const breakOnSigint = false;
183 await this.module.evaluate(timeout, breakOnSigint);
/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.js200 await m.evaluate({ breakOnSigint: 'a-string' }); property
/third_party/node/doc/api/
Dvm.md137 description: The `breakOnSigint` option is supported now.
149 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
183 Using the `timeout` or `breakOnSigint` options will result in new event loops
199 description: The `breakOnSigint` option is supported now.
211 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
234 `breakOnSigint` scopes in that case.
265 description: The `breakOnSigint` option is supported now.
275 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
509 * `breakOnSigint` {boolean} If `true`, receiving `SIGINT`
915 They are included in the `timeout` and `breakOnSigint` scopes in that case.
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md3235 …ithub.com/nodejs/node/commit/0c7f18ebd3)] - **test**: test error when breakOnSigint is not a boole…
DCHANGELOG_V14.md2271 …ithub.com/nodejs/node/commit/47ba12265e)] - **doc**: improve text for breakOnSigint (Rich Trott) […
DCHANGELOG_V8.md4967 …com/nodejs/node/commit/4bcbefccce)] - **test**: add coverage for vm's breakOnSigint option (cjihri…