Searched refs:breakOnSigint (Results 1 – 16 of 16) sorted by relevance
/third_party/node/benchmark/vm/ |
D | run-in-this-context.js | 7 breakOnSigint: [0, 1], property 13 function main({ n, breakOnSigint, withSigintListener }) { property 14 const options = breakOnSigint ? { breakOnSigint: true } : {};
|
D | run-in-context.js | 7 breakOnSigint: [0, 1], property 13 function main({ n, breakOnSigint, withSigintListener }) { property 14 const options = breakOnSigint ? { breakOnSigint: true } : {};
|
/third_party/node/lib/ |
D | vm.js | 119 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,
|
D | repl.js | 565 breakOnSigint: self.breakEvalOnSigint, property
|
/third_party/node/lib/internal/vm/ |
D | module.js | 216 const { breakOnSigint = false } = options; 217 validateBoolean(breakOnSigint, 'options.breakOnSigint'); 226 await this[kWrap].evaluate(timeout, breakOnSigint);
|
/third_party/node/lib/internal/modules/esm/ |
D | module_job.js | 192 const breakOnSigint = false; 194 await this.module.evaluate(timeout, breakOnSigint);
|
/third_party/node/test/sequential/ |
D | test-vm-break-on-sigint.js | 20 vm.runInContext('console.log(1)', ctx, { breakOnSigint: true }); property
|
/third_party/node/test/parallel/ |
D | test-vm-sigint.js | 22 const options = { breakOnSigint: true }; property
|
D | test-vm-sigint-existing-handler.js | 37 const options = { breakOnSigint: true }; property
|
D | test-vm-options-validation.js | 92 assertErrors({ breakOnSigint: value }, invalidArgType); property
|
D | test-vm-module-errors.js | 205 await m.evaluate({ breakOnSigint: 'a-string' }); property
|
/third_party/node/doc/api/ |
D | vm.md | 177 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/ |
D | CHANGELOG_V15.md | 1793 …ithub.com/nodejs/node/commit/890b03ecd6)] - **doc**: improve text for breakOnSigint (Rich Trott) […
|
D | CHANGELOG_V14.md | 2181 …ithub.com/nodejs/node/commit/47ba12265e)] - **doc**: improve text for breakOnSigint (Rich Trott) […
|
D | CHANGELOG_V8.md | 5005 …com/nodejs/node/commit/4bcbefccce)] - **test**: add coverage for vm's breakOnSigint option (cjihri…
|
D | CHANGELOG_V12.md | 5665 …ithub.com/nodejs/node/commit/0c7f18ebd3)] - **test**: test error when breakOnSigint is not a boole…
|