Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/src/extension/test/node/fixtures/gitdiff/01-basic-add-2-lines.diff
13406 views
1
diff --git a/01-basic b/01-basic-add-2-lines
2
index 30c5fc9cb..cc5d326c7 100644
3
--- a/01-basic
4
+++ b/01-basic-add-2-lines
5
@@ -2,6 +2,7 @@
6
* Copyright (c) Microsoft Corporation and GitHub. All rights reserved.
7
*--------------------------------------------------------------------------------------------*/
8
import { spawn } from 'child_process';
9
+// a change
10
11
export function f(args_: string[], flags: any, child: any) {
12
if (flags.verbose) {
13
@@ -12,5 +13,6 @@ export function f(args_: string[], flags: any, child: any) {
14
return new Promise((c) => child.once('exit', () => c(null)));
15
}
16
child.unref();
17
+ // a second change
18
return Promise.resolve();
19
}
20
\ No newline at end of file
21
22