Lines Matching refs:REPLServer
258 function REPLServer(prompt,
264 if (!(this instanceof REPLServer)) {
265 return new REPLServer(prompt,
1065 ObjectSetPrototypeOf(REPLServer.prototype, Interface.prototype);
1066 ObjectSetPrototypeOf(REPLServer, Interface);
1071 return new REPLServer(
1075 REPLServer.prototype.setupHistory = function setupHistory(historyFile, cb) {
1079 REPLServer.prototype.clearBufferedCommand = function clearBufferedCommand() {
1083 REPLServer.prototype.close = function close() {
1097 REPLServer.prototype.createContext = function() {
1153 REPLServer.prototype.resetContext = function() {
1192 REPLServer.prototype.displayPrompt = function(preserveCursor) {
1207 REPLServer.prototype.setPrompt = function setPrompt(prompt) {
1279 REPLServer.prototype.complete = function() {
1624 REPLServer.prototype.completeOnEditorMode = (callback) => (err, results) => {
1637 REPLServer.prototype.defineCommand = function(keyword, cmd) {
1849 REPLServer,