/third_party/node/doc/api/ |
D | repl.md | 1 # REPL chapter 9 The `repl` module provides a Read-Eval-Print-Loop (REPL) implementation that 28 ANSI-styled output, saving and restoring current REPL session state, error 35 The following special commands are supported by all REPL instances: 40 * `.clear`: Resets the REPL `context` to an empty object and clears any 42 * `.exit`: Close the I/O stream, causing the REPL to exit. 44 * `.save`: Save the current REPL session to a file: 46 * `.load`: Load a file into the current REPL session. 65 The following key combinations in the REPL have these special effects: 106 scope. It is possible to expose a variable to the REPL explicitly by assigning [all …]
|
D | intl.md | 21 * More accurate [REPL][] line editing 57 | [REPL][] | partial (inaccurate line editing) | full … 197 [REPL]: repl.md#repl_repl
|
D | cli.md | 19 Execute without arguments to start the [REPL][]. 276 Enable experimental top-level `await` keyword support in REPL. 1178 predefined in the REPL can also be used in `script`. 1197 Opens the REPL even if stdin does not appear to be a terminal. 1261 When set, colors will not be used in the REPL. 1489 Path to the file used to store the persistent REPL history. The default path is 1491 to an empty string (`''` or `' '`) disables persistent REPL history. 1500 Path to a Node.js module which will be loaded in place of the built-in REPL. 1501 Overriding this value to an empty string (`''`) will use the built-in REPL. 1684 [REPL]: repl.md
|
/third_party/node/lib/internal/ |
D | repl.js | 10 const REPL = require('repl'); constant 13 module.exports = ObjectCreate(REPL); 35 'strict': REPL.REPL_MODE_STRICT, 36 'sloppy': REPL.REPL_MODE_SLOPPY 41 opts.replMode = REPL.REPL_MODE_SLOPPY; 51 const repl = REPL.start(opts);
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_info_opcodes.h | 4 OPCODE(1, 1, REPL, RCP) 5 OPCODE(1, 1, REPL, RSQ) 10 OPCODE(1, 2, REPL, DP3) 11 OPCODE(1, 2, REPL, DP4) 21 OPCODE(1, 1, REPL, SQRT) 29 OPCODE(1, 1, REPL, EX2) 30 OPCODE(1, 1, REPL, LG2) 31 OPCODE(1, 2, REPL, POW) 37 OPCODE(1, 1, REPL, COS) 41 OPCODE(1, 1, REPL, PK2H) [all …]
|
D | tgsi_info.c | 34 #define REPL TGSI_OUTPUT_REPLICATE macro
|
/third_party/node/test/parallel/ |
D | test-repl-envvars.js | 7 const REPL = require('internal/repl'); constant 50 REPL.createInternalRepl(process.env, opts, function(err, repl) {
|
D | test-repl-autocomplete.js | 7 const REPL = require('internal/repl'); constant 151 REPL.createInternalRepl(opts.env, {
|
D | test-repl-reverse-search.js | 7 const REPL = require('internal/repl'); constant 300 REPL.createInternalRepl(opts.env, {
|
D | test-repl-programmatic-history.js | 6 const REPL = require('repl'); constant 216 const repl = REPL.start({
|
D | test-repl-persistent-history.js | 8 const REPL = require('internal/repl'); constant 219 REPL.createInternalRepl(env, {
|
D | test-repl-history-navigation.js | 7 const REPL = require('internal/repl'); constant 587 REPL.createInternalRepl(opts.env, {
|
/third_party/node/deps/npm/node_modules/has-symbols/ |
D | .npmignore | 36 # Optional REPL history
|
/third_party/typescript_eslint/ |
D | .gitignore | 45 # Optional REPL history
|
/third_party/python/Tools/c-analyzer/ |
D | README | 8 * globals used exclusively in main or in the REPL
|
/third_party/quickjs/ |
D | TODO | 29 REPL:
|
D | Changelog | 20 - REPL: support unicode characters larger than 16 bits
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a6.rst | 96 REPL has not implemented bracketed paste support. Also, bracketed mode 452 Always put compiler and system information on the first line of the REPL
|
D | 3.10.0b2.rst | 39 Avoid side effects of checking for specialized syntax errors in the REPL
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_IOJS.md | 102 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/io.js/issues/690) 187 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/io.js/issues/690) 277 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/io.js/issues/690) 352 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/io.js/issues/690) 436 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690) 522 * Using multiple REPL instances in parallel may cause some REPL history corruption or loss. [#1634]… 524 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690) 553 * [[`30edb5aee9`](https://github.com/nodejs/node/commit/30edb5aee9)] - **repl**: preventing REPL cr… 554 …nodejs/node/commit/77fa385e5d)] - **repl**: fixing `undefined` in invalid REPL keyword error (Sakt… 587 * Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690) [all …]
|
D | CHANGELOG_ARCHIVE.md | 1074 * repl: ensure each REPL instance gets its own "context" (Nathan Rajlich) 1087 * repl: make "end of input" JSON.parse() errors throw in the REPL (Nathan Rajlich) 1088 * repl: make invalid RegExp modifiers throw in the REPL (Nathan Rajlich) 1104 * repl: make invalid RegExps throw in the REPL (Nathan Rajlich) 1462 * add a -i/--interactive flag to force the REPL (Nathan Rajlich) 1963 * print undefined on undefined values in REPL (Nathan Rajlich) 2071 * Debugger and REPL improvements (Fedor Indutny) 2157 …github.com/joyent/node/issues/1572) improve tab completion for objects in the REPL (Nathan Rajlich) 2298 * [#955](https://github.com/joyent/node/issues/955) Change ^C handling in REPL (isaacs) 2388 * [#983](https://github.com/joyent/node/issues/983) Better JSON.parse error detection in REPL (isaa… [all …]
|
/third_party/python/Doc/library/ |
D | __main__.rst | 348 The Python REPL is another example of a "top-level environment", so anything 349 defined in the REPL becomes part of the ``__main__`` scope::
|
/third_party/boost/tools/build/src/tools/ |
D | vmsdecc.jam | 573 $(.AR) /CREATE /REPL $(AROPTIONS) $(<:W) $(>:WJ=,) 576 $(.AR) /REPL $(AROPTIONS) $(<:W) $(CXX-REPO-OBJS:J=,)
|
/third_party/node/lib/ |
D | repl.js | 679 /^REPL\d+:\d+\r?\n/, ''), 693 /(\s+at\s+REPL\d+:)(\d+)/,
|
/third_party/python/Doc/c-api/ |
D | init_config.rst | 780 If greater than 0, enable the interactive mode (REPL). 793 * Python REPL doesn't import :mod:`readline` nor enable default readline 1411 By default and when if :option:`-i` option is used, run the REPL.
|