Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Enable smartStep by default (microsoft/vscode#62965)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 15, 2018
1 parent 6e95c18 commit 5e0f203
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "^6.7.31",
"vscode-chrome-debug-core": "^6.7.34",
"vscode-debugadapter": "^1.32.1",
"vscode-nls": "^4.0.0"
},
Expand Down
2 changes: 2 additions & 0 deletions src/chromeDebugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ export class ChromeDebugAdapter extends CoreDebugAdapter {
args.targetFilter = utils.getTargetFilter(args.targetTypes);
}

args.smartStep = typeof args.smartStep === 'undefined' ? !this._isVSClient : args.smartStep;

super.commonArgs(args);
}

Expand Down

0 comments on commit 5e0f203

Please sign in to comment.