Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/scenarios/test-explain/methods.ts
13397 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation and GitHub. All rights reserved.
3
*--------------------------------------------------------------------------------------------*/
4
5
class Foo {
6
bar() {
7
console.log('bar');
8
}
9
10
qux() {
11
console.log('qux');
12
}
13
14
baz() {
15
this.bar();
16
}
17
}
18
19