diff --git a/tests/baselines/reference/extractMethod/extractMethod23.ts b/tests/baselines/reference/extractMethod/extractMethod23.ts index 8bc3db86cc1bc..0c56434447ebf 100644 --- a/tests/baselines/reference/extractMethod/extractMethod23.ts +++ b/tests/baselines/reference/extractMethod/extractMethod23.ts @@ -6,7 +6,7 @@ namespace NS { } function M3() { } } -// ==SCOPE::function 'M2'== +// ==SCOPE::inner function in function 'M2'== namespace NS { function M1() { } function M2() { @@ -18,7 +18,7 @@ namespace NS { } function M3() { } } -// ==SCOPE::namespace 'NS'== +// ==SCOPE::function in namespace 'NS'== namespace NS { function M1() { } function M2() { @@ -30,7 +30,7 @@ namespace NS { function M3() { } } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== namespace NS { function M1() { } function M2() { diff --git a/tests/baselines/reference/extractMethod/extractMethod24.ts b/tests/baselines/reference/extractMethod/extractMethod24.ts index ec6d6cd3f1262..0b33289708fbc 100644 --- a/tests/baselines/reference/extractMethod/extractMethod24.ts +++ b/tests/baselines/reference/extractMethod/extractMethod24.ts @@ -6,7 +6,7 @@ function Outer() { } function M3() { } } -// ==SCOPE::function 'M2'== +// ==SCOPE::inner function in function 'M2'== function Outer() { function M1() { } function M2() { @@ -18,7 +18,7 @@ function Outer() { } function M3() { } } -// ==SCOPE::function 'Outer'== +// ==SCOPE::inner function in function 'Outer'== function Outer() { function M1() { } function M2() { @@ -30,7 +30,7 @@ function Outer() { function M3() { } } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== function Outer() { function M1() { } function M2() { diff --git a/tests/baselines/reference/extractMethod/extractMethod25.ts b/tests/baselines/reference/extractMethod/extractMethod25.ts index a7a971315a176..c77ec1abbfd69 100644 --- a/tests/baselines/reference/extractMethod/extractMethod25.ts +++ b/tests/baselines/reference/extractMethod/extractMethod25.ts @@ -4,7 +4,7 @@ function M2() { return 1; } function M3() { } -// ==SCOPE::function 'M2'== +// ==SCOPE::inner function in function 'M2'== function M1() { } function M2() { return newFunction(); @@ -14,7 +14,7 @@ function M2() { } } function M3() { } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== function M1() { } function M2() { return newFunction(); diff --git a/tests/baselines/reference/extractMethod/extractMethod26.ts b/tests/baselines/reference/extractMethod/extractMethod26.ts index d0619ea9b0a42..84dc82f7fed8f 100644 --- a/tests/baselines/reference/extractMethod/extractMethod26.ts +++ b/tests/baselines/reference/extractMethod/extractMethod26.ts @@ -6,7 +6,7 @@ class C { } M3() { } } -// ==SCOPE::class 'C'== +// ==SCOPE::method in class 'C'== class C { M1() { } M2() { @@ -18,7 +18,7 @@ class C { M3() { } } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== class C { M1() { } M2() { diff --git a/tests/baselines/reference/extractMethod/extractMethod27.ts b/tests/baselines/reference/extractMethod/extractMethod27.ts index 9f1f1e84a77ef..ce21f1e1fed58 100644 --- a/tests/baselines/reference/extractMethod/extractMethod27.ts +++ b/tests/baselines/reference/extractMethod/extractMethod27.ts @@ -7,7 +7,7 @@ class C { constructor() { } M3() { } } -// ==SCOPE::class 'C'== +// ==SCOPE::method in class 'C'== class C { M1() { } M2() { @@ -20,7 +20,7 @@ class C { M3() { } } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== class C { M1() { } M2() { diff --git a/tests/baselines/reference/extractMethod/extractMethod28.ts b/tests/baselines/reference/extractMethod/extractMethod28.ts index 9b97e58154894..e3d0fc3b9ea94 100644 --- a/tests/baselines/reference/extractMethod/extractMethod28.ts +++ b/tests/baselines/reference/extractMethod/extractMethod28.ts @@ -7,7 +7,7 @@ class C { M3() { } constructor() { } } -// ==SCOPE::class 'C'== +// ==SCOPE::method in class 'C'== class C { M1() { } M2() { @@ -20,7 +20,7 @@ class C { M3() { } constructor() { } } -// ==SCOPE::global scope== +// ==SCOPE::function in global scope== class C { M1() { } M2() {