Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
microsoft
Edit Copy
Star
GitHub Repository:
microsoft/vscode
Path:
blob/main/extensions/copilot/src/extension/test/node/fixtures/pseudodiff/08-modifyunchanged-one.diff
1
3
4
0
6
views
1
function someFunc() {
2
3
const obj = {
4
a: 1,
5
- b: 2
6
+ b: 2,
7
}
8
9
return obj;
10
}
11