Searched refs:breakOnSigint (Results 1 – 14 of 14) 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 | 130 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]
|
D | repl.js | 562 breakOnSigint: self.breakEvalOnSigint property
|
/third_party/node/lib/internal/vm/ |
D | module.js | 217 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/ |
D | module_job.js | 181 const breakOnSigint = false; 183 await this.module.evaluate(timeout, breakOnSigint);
|
/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 | 200 await m.evaluate({ breakOnSigint: 'a-string' }); property
|
/third_party/node/doc/api/ |
D | vm.md | 137 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/ |
D | CHANGELOG_V12.md | 3235 …ithub.com/nodejs/node/commit/0c7f18ebd3)] - **test**: test error when breakOnSigint is not a boole…
|
D | CHANGELOG_V14.md | 2271 …ithub.com/nodejs/node/commit/47ba12265e)] - **doc**: improve text for breakOnSigint (Rich Trott) […
|
D | CHANGELOG_V8.md | 4967 …com/nodejs/node/commit/4bcbefccce)] - **test**: add coverage for vm's breakOnSigint option (cjihri…
|