MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / MyClass

Class MyClass

tests/test_code/js/scoping/scoping.js:5–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3}
4
5class MyClass {
6 scope_confusion() {
7 console.log('scope_confusion');
8 }
9
10 a() {
11 this.scope_confusion();
12 }
13
14 b() {
15 scope_confusion();
16 }
17}
18
19
20let obj = new myClass();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected