mirror of
https://github.com/nodejs/node.git
synced 2025-05-14 13:45:37 +00:00

- Adds the `breakEvalOnSigint` option to `vm.runIn(This)Context`. This uses a watchdog thread to wait for SIGINT and generally works just like the existing `timeout` option. - Adds a method to the existing timer-based watchdog to check if it stopped regularly or by running into the timeout. This is used to tell a SIGINT abort from a timer-based one. - Adds (internal) `process._{start,stop}SigintWatchdog` methods to start/stop the watchdog thread used by the above option manually. This will be used in the REPL to set up SIGINT handling before entering terminal raw mode, so that there is no time window in which Ctrl+C fully aborts the process. PR-URL: https://github.com/nodejs/node/pull/6635 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
60 lines
1.9 KiB
Plaintext
60 lines
1.9 KiB
Plaintext
[eval]
|
|
[eval]:1
|
|
with(this){__filename}
|
|
^^^^
|
|
SyntaxError: Strict mode code may not include a with statement
|
|
at Object.exports.runInThisContext (vm.js:*)
|
|
at Object.<anonymous> ([eval]-wrapper:*:*)
|
|
at Module._compile (module.js:*:*)
|
|
at bootstrap_node.js:*:*
|
|
at _combinedTickCallback (internal/process/next_tick.js:*:*)
|
|
at process._tickCallback (internal/process/next_tick.js:*:*)
|
|
42
|
|
42
|
|
[eval]:1
|
|
throw new Error("hello")
|
|
^
|
|
Error: hello
|
|
at [eval]:1:7
|
|
at ContextifyScript.Script.runInThisContext (vm.js:*)
|
|
at Object.exports.runInThisContext (vm.js:*)
|
|
at Object.<anonymous> ([eval]-wrapper:*:*)
|
|
at Module._compile (module.js:*:*)
|
|
at bootstrap_node.js:*:*
|
|
at _combinedTickCallback (internal/process/next_tick.js:*:*)
|
|
at process._tickCallback (internal/process/next_tick.js:*:*)
|
|
[eval]:1
|
|
throw new Error("hello")
|
|
^
|
|
Error: hello
|
|
at [eval]:1:7
|
|
at ContextifyScript.Script.runInThisContext (vm.js:*)
|
|
at Object.exports.runInThisContext (vm.js:*)
|
|
at Object.<anonymous> ([eval]-wrapper:*:*)
|
|
at Module._compile (module.js:*:*)
|
|
at bootstrap_node.js:*:*
|
|
at _combinedTickCallback (internal/process/next_tick.js:*:*)
|
|
at process._tickCallback (internal/process/next_tick.js:*:*)
|
|
100
|
|
[eval]:1
|
|
var x = 100; y = x;
|
|
^
|
|
ReferenceError: y is not defined
|
|
at [eval]:1:16
|
|
at ContextifyScript.Script.runInThisContext (vm.js:*)
|
|
at Object.exports.runInThisContext (vm.js:*)
|
|
at Object.<anonymous> ([eval]-wrapper:*:*)
|
|
at Module._compile (module.js:*:*)
|
|
at bootstrap_node.js:*:*
|
|
at _combinedTickCallback (internal/process/next_tick.js:*:*)
|
|
at process._tickCallback (internal/process/next_tick.js:*:*)
|
|
[eval]:1
|
|
var ______________________________________________; throw 10
|
|
^
|
|
10
|
|
[eval]:1
|
|
var ______________________________________________; throw 10
|
|
^
|
|
10
|
|
done
|