Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
code:type var modified to type let
  • Loading branch information
PoojaDurgad committed Aug 24, 2020
commit 31f2a4c609ea42a90ebd5963267e2dde0984af56
2 changes: 1 addition & 1 deletion test/sequential/test-repl-timeout-throw.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ child.stdin.write = function(original) {
}(child.stdin.write);

child.stdout.once('data', function() {
child.stdin.write('var throws = 0;');
child.stdin.write('let throws = 0;');
child.stdin.write('process.on("exit",function(){console.log(throws)});');
child.stdin.write('function thrower(){console.log("THROW",throws++);XXX};');
child.stdin.write('setTimeout(thrower);""\n');
Expand Down