-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Closed
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.replIssues and PRs related to the REPL subsystem.Issues and PRs related to the REPL subsystem.
Description
The API documentation for REPL says,
"useGlobal
- if set to true
, then the repl will use the global object, instead of running scripts in a separate context. Defaults to false
."
This is only true if a REPL is created programmatically. The REPL that is created by simply typing node
on the command line defaults useGlobal
to true
.
This is because the internal createRepl
function, used by node.js
here, defaults this value to true
. https://github.com/nodejs/node/blob/master/lib/internal/repl.js#L25
This can be verified by simply firing up a node REPL and typing .clear
. You should see on the REPL command line, this text, "Clearing context....", but you don't.
- Version: 4.2.4
- Platform: Darwin Cerebus.local 15.3.0 Darwin Kernel Version 15.3.0: Thu Dec 10 18:40:58 PST 2015; root:xnu-3248.30.4~1/RELEASE_X86_64 x86_64
- Subsystem: repl
Metadata
Metadata
Assignees
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.replIssues and PRs related to the REPL subsystem.Issues and PRs related to the REPL subsystem.