Skip to content

Commit

Permalink
process: changed var to const in internal/v8_prof_processor
Browse files Browse the repository at this point in the history
PR-URL: #8619
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Ilkka Myller <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
  • Loading branch information
AdriVanHoudt authored and jasnell committed Sep 22, 2016
1 parent 0a9f56a commit 3ddc9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/v8_prof_processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ scriptFiles.forEach(function(s) {
script += process.binding('natives')[s] + '\n';
});

var tickArguments = [];
const tickArguments = [];
if (process.platform === 'darwin') {
tickArguments.push('--mac');
} else if (process.platform === 'win32') {
Expand Down

0 comments on commit 3ddc9db

Please sign in to comment.