mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
435 B
18 lines
435 B
9 years ago
|
'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');
|