Skip to content

Commit d735b2c

Browse files
sixmencjihrig
authored andcommitted
repl: fix tab completion for a non-global context
Use vm.isContext() to properly identify contexts. PR-URL: nodejs/node-v0.x-archive#25382 PR-URL: #2052 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent c370bd3 commit d735b2c

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

lib/repl.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,7 @@ REPLServer.prototype.complete = function(line, callback) {
611611
if (!expr) {
612612
// If context is instance of vm.ScriptContext
613613
// Get global vars synchronously
614-
if (this.useGlobal ||
615-
this.context.constructor &&
616-
this.context.constructor.name === 'Context') {
614+
if (this.useGlobal || vm.isContext(this.context)) {
617615
var contextProto = this.context;
618616
while (contextProto = Object.getPrototypeOf(contextProto)) {
619617
completionGroups.push(Object.getOwnPropertyNames(contextProto));

test/parallel/test-repl-tab-complete.js

+10
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,13 @@ testMe.complete('require(\'n', function(error, data) {
206206
assert.strictEqual(error, null);
207207
assert.deepEqual(data, [['net'], 'n']);
208208
});
209+
210+
// Make sure tab completion works on context properties
211+
putIn.run(['.clear']);
212+
213+
putIn.run([
214+
'var custom = "test";'
215+
]);
216+
testMe.complete('cus', function(error, data) {
217+
assert.deepEqual(data, [['custom'], 'cus']);
218+
});

0 commit comments

Comments
 (0)