mirror of https://github.com/lukechilds/node.git
Browse Source
There is some unnecessary logic in repl.js. Remove it. PR-URL: https://github.com/nodejs/node/pull/6071 Reviewed-By: James M Snell <jasnell@gmail.com>process-exit-stdio-flushing
2 changed files with 21 additions and 4 deletions
@ -0,0 +1,17 @@ |
|||||
|
'use strict'; |
||||
|
require('../common'); |
||||
|
const repl = require('repl'); |
||||
|
const assert = require('assert'); |
||||
|
|
||||
|
var replserver = new repl.REPLServer(); |
||||
|
|
||||
|
replserver._inTemplateLiteral = true; |
||||
|
|
||||
|
// `null` gets treated like an empty string. (Should it? You have to do some
|
||||
|
// strange business to get it into the REPL. Maybe it should really throw?)
|
||||
|
|
||||
|
assert.doesNotThrow(() => { |
||||
|
replserver.emit('line', null); |
||||
|
}); |
||||
|
|
||||
|
replserver.emit('line', '.exit'); |
Loading…
Reference in new issue