File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace NS {
66 }
77 function M3 ( ) { }
88}
9- // ==SCOPE::function 'M2'==
9+ // ==SCOPE::inner function in function 'M2'==
1010namespace NS {
1111 function M1 ( ) { }
1212 function M2 ( ) {
@@ -18,7 +18,7 @@ namespace NS {
1818 }
1919 function M3 ( ) { }
2020}
21- // ==SCOPE::namespace 'NS'==
21+ // ==SCOPE::function in namespace 'NS'==
2222namespace NS {
2323 function M1 ( ) { }
2424 function M2 ( ) {
@@ -30,7 +30,7 @@ namespace NS {
3030
3131 function M3 ( ) { }
3232}
33- // ==SCOPE::global scope==
33+ // ==SCOPE::function in global scope==
3434namespace NS {
3535 function M1 ( ) { }
3636 function M2 ( ) {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ function Outer() {
66 }
77 function M3 ( ) { }
88}
9- // ==SCOPE::function 'M2'==
9+ // ==SCOPE::inner function in function 'M2'==
1010function Outer ( ) {
1111 function M1 ( ) { }
1212 function M2 ( ) {
@@ -18,7 +18,7 @@ function Outer() {
1818 }
1919 function M3 ( ) { }
2020}
21- // ==SCOPE::function 'Outer'==
21+ // ==SCOPE::inner function in function 'Outer'==
2222function Outer ( ) {
2323 function M1 ( ) { }
2424 function M2 ( ) {
@@ -30,7 +30,7 @@ function Outer() {
3030
3131 function M3 ( ) { }
3232}
33- // ==SCOPE::global scope==
33+ // ==SCOPE::function in global scope==
3434function Outer ( ) {
3535 function M1 ( ) { }
3636 function M2 ( ) {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ function M2() {
44 return 1 ;
55}
66function M3 ( ) { }
7- // ==SCOPE::function 'M2'==
7+ // ==SCOPE::inner function in function 'M2'==
88function M1 ( ) { }
99function M2 ( ) {
1010 return newFunction ( ) ;
@@ -14,7 +14,7 @@ function M2() {
1414 }
1515}
1616function M3 ( ) { }
17- // ==SCOPE::global scope==
17+ // ==SCOPE::function in global scope==
1818function M1 ( ) { }
1919function M2 ( ) {
2020 return newFunction ( ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class C {
66 }
77 M3 ( ) { }
88}
9- // ==SCOPE::class 'C'==
9+ // ==SCOPE::method in class 'C'==
1010class C {
1111 M1 ( ) { }
1212 M2 ( ) {
@@ -18,7 +18,7 @@ class C {
1818
1919 M3 ( ) { }
2020}
21- // ==SCOPE::global scope==
21+ // ==SCOPE::function in global scope==
2222class C {
2323 M1 ( ) { }
2424 M2 ( ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class C {
77 constructor ( ) { }
88 M3 ( ) { }
99}
10- // ==SCOPE::class 'C'==
10+ // ==SCOPE::method in class 'C'==
1111class C {
1212 M1 ( ) { }
1313 M2 ( ) {
@@ -20,7 +20,7 @@ class C {
2020
2121 M3 ( ) { }
2222}
23- // ==SCOPE::global scope==
23+ // ==SCOPE::function in global scope==
2424class C {
2525 M1 ( ) { }
2626 M2 ( ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class C {
77 M3 ( ) { }
88 constructor ( ) { }
99}
10- // ==SCOPE::class 'C'==
10+ // ==SCOPE::method in class 'C'==
1111class C {
1212 M1 ( ) { }
1313 M2 ( ) {
@@ -20,7 +20,7 @@ class C {
2020 M3 ( ) { }
2121 constructor ( ) { }
2222}
23- // ==SCOPE::global scope==
23+ // ==SCOPE::function in global scope==
2424class C {
2525 M1 ( ) { }
2626 M2 ( ) {
You can’t perform that action at this time.
0 commit comments