Skip to content

Commit

Permalink
lib: change var to let
Browse files Browse the repository at this point in the history
change var to let in test-tick-processor-unknown.js
PR-URL: #30408
Reviewed-By: Fedor Indutny <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
dktistakis authored and targos committed Dec 1, 2019
1 parent f1569f3 commit b540ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tick-processor/test-tick-processor-unknown.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const base = require('./tick-processor-base.js');
base.runTest({
pattern: /LazyCompile.*\[eval]:1|.*% UNKNOWN/,
code: `function f() {
for (var i = 0; i < 1000000; i++) {
for (let i = 0; i < 1000000; i++) {
i++;
}
setImmediate(function() { f(); });
Expand Down

0 comments on commit b540ee0

Please sign in to comment.