File tree 6 files changed +14
-14
lines changed 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace NS {
6
6
}
7
7
function M3 ( ) { }
8
8
}
9
- // ==SCOPE::function 'M2'==
9
+ // ==SCOPE::inner function in function 'M2'==
10
10
namespace NS {
11
11
function M1 ( ) { }
12
12
function M2 ( ) {
@@ -18,7 +18,7 @@ namespace NS {
18
18
}
19
19
function M3 ( ) { }
20
20
}
21
- // ==SCOPE::namespace 'NS'==
21
+ // ==SCOPE::function in namespace 'NS'==
22
22
namespace NS {
23
23
function M1 ( ) { }
24
24
function M2 ( ) {
@@ -30,7 +30,7 @@ namespace NS {
30
30
31
31
function M3 ( ) { }
32
32
}
33
- // ==SCOPE::global scope==
33
+ // ==SCOPE::function in global scope==
34
34
namespace NS {
35
35
function M1 ( ) { }
36
36
function M2 ( ) {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ function Outer() {
6
6
}
7
7
function M3 ( ) { }
8
8
}
9
- // ==SCOPE::function 'M2'==
9
+ // ==SCOPE::inner function in function 'M2'==
10
10
function Outer ( ) {
11
11
function M1 ( ) { }
12
12
function M2 ( ) {
@@ -18,7 +18,7 @@ function Outer() {
18
18
}
19
19
function M3 ( ) { }
20
20
}
21
- // ==SCOPE::function 'Outer'==
21
+ // ==SCOPE::inner function in function 'Outer'==
22
22
function Outer ( ) {
23
23
function M1 ( ) { }
24
24
function M2 ( ) {
@@ -30,7 +30,7 @@ function Outer() {
30
30
31
31
function M3 ( ) { }
32
32
}
33
- // ==SCOPE::global scope==
33
+ // ==SCOPE::function in global scope==
34
34
function Outer ( ) {
35
35
function M1 ( ) { }
36
36
function M2 ( ) {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ function M2() {
4
4
return 1 ;
5
5
}
6
6
function M3 ( ) { }
7
- // ==SCOPE::function 'M2'==
7
+ // ==SCOPE::inner function in function 'M2'==
8
8
function M1 ( ) { }
9
9
function M2 ( ) {
10
10
return newFunction ( ) ;
@@ -14,7 +14,7 @@ function M2() {
14
14
}
15
15
}
16
16
function M3 ( ) { }
17
- // ==SCOPE::global scope==
17
+ // ==SCOPE::function in global scope==
18
18
function M1 ( ) { }
19
19
function M2 ( ) {
20
20
return newFunction ( ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class C {
6
6
}
7
7
M3 ( ) { }
8
8
}
9
- // ==SCOPE::class 'C'==
9
+ // ==SCOPE::method in class 'C'==
10
10
class C {
11
11
M1 ( ) { }
12
12
M2 ( ) {
@@ -18,7 +18,7 @@ class C {
18
18
19
19
M3 ( ) { }
20
20
}
21
- // ==SCOPE::global scope==
21
+ // ==SCOPE::function in global scope==
22
22
class C {
23
23
M1 ( ) { }
24
24
M2 ( ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class C {
7
7
constructor ( ) { }
8
8
M3 ( ) { }
9
9
}
10
- // ==SCOPE::class 'C'==
10
+ // ==SCOPE::method in class 'C'==
11
11
class C {
12
12
M1 ( ) { }
13
13
M2 ( ) {
@@ -20,7 +20,7 @@ class C {
20
20
21
21
M3 ( ) { }
22
22
}
23
- // ==SCOPE::global scope==
23
+ // ==SCOPE::function in global scope==
24
24
class C {
25
25
M1 ( ) { }
26
26
M2 ( ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class C {
7
7
M3 ( ) { }
8
8
constructor ( ) { }
9
9
}
10
- // ==SCOPE::class 'C'==
10
+ // ==SCOPE::method in class 'C'==
11
11
class C {
12
12
M1 ( ) { }
13
13
M2 ( ) {
@@ -20,7 +20,7 @@ class C {
20
20
M3 ( ) { }
21
21
constructor ( ) { }
22
22
}
23
- // ==SCOPE::global scope==
23
+ // ==SCOPE::function in global scope==
24
24
class C {
25
25
M1 ( ) { }
26
26
M2 ( ) {
You can’t perform that action at this time.
0 commit comments