Skip to content

Commit 1e27898

Browse files
Fixed bug with whitespace in copied code
1 parent b95460e commit 1e27898

14 files changed

+55
-66
lines changed

data/fixtures/scopes/csharp/name/name.field.class.scope

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ class Foo {
4343
>-<
4444
1| int bar;
4545

46-
[#2 Domain] = 1:4-1:11
47-
>-------<
46+
[#2 Domain] = 1:4-1:12
47+
>--------<
4848
1| int bar;
4949

5050
[#2 Insertion delimiter] = " "
@@ -66,8 +66,8 @@ class Foo {
6666
>-<
6767
2| int baz = 0;
6868

69-
[#3 Domain] = 2:4-2:15
70-
>-----------<
69+
[#3 Domain] = 2:4-2:16
70+
>------------<
7171
2| int baz = 0;
7272

7373
[#3 Insertion delimiter] = " "

data/fixtures/scopes/csharp/name/name.field.interface.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ interface IFoo {
4141
>-<
4242
1| int bar;
4343

44-
[#2 Domain] = 1:4-1:11
45-
>-------<
44+
[#2 Domain] = 1:4-1:12
45+
>--------<
4646
1| int bar;
4747

4848
[#2 Insertion delimiter] = " "

data/fixtures/scopes/csharp/name/name.variable.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ int foo = 0;
1717
>-<
1818
0| int foo = 0;
1919

20-
[Domain] = 0:0-0:11
21-
>-----------<
20+
[Domain] = 0:0-0:12
21+
>------------<
2222
0| int foo = 0;
2323

2424
[Insertion delimiter] = " "

data/fixtures/scopes/csharp/type/type.field.class.scope

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class Foo {
3333
>-<
3434
1| int bar;
3535

36-
[#2 Domain] = 1:4-1:11
37-
>-------<
36+
[#2 Domain] = 1:4-1:12
37+
>--------<
3838
1| int bar;
3939

4040
[#2 Insertion delimiter] = " "
@@ -56,8 +56,8 @@ class Foo {
5656
>-<
5757
2| int baz = 0;
5858

59-
[#3 Domain] = 2:4-2:15
60-
>-----------<
59+
[#3 Domain] = 2:4-2:16
60+
>------------<
6161
2| int baz = 0;
6262

6363
[#3 Insertion delimiter] = " "

data/fixtures/scopes/csharp/type/type.field.interface.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ interface IFoo {
3131
>-<
3232
1| int bar;
3333

34-
[#2 Domain] = 1:4-1:11
35-
>-------<
34+
[#2 Domain] = 1:4-1:12
35+
>--------<
3636
1| int bar;
3737

3838
[#2 Insertion delimiter] = " "

data/fixtures/scopes/csharp/type/type.typeArgument.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ List<int> foo;
1313
>-<
1414
0| List<int> foo;
1515

16-
[#1 Domain] = 0:0-0:13
17-
>-------------<
16+
[#1 Domain] = 0:0-0:14
17+
>--------------<
1818
0| List<int> foo;
1919

2020
[#1 Insertion delimiter] = " "

data/fixtures/scopes/csharp/type/type.variable.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ int foo;
1313
>-<
1414
0| int foo;
1515

16-
[Domain] = 0:0-0:7
17-
>-------<
16+
[Domain] = 0:0-0:8
17+
>--------<
1818
0| int foo;
1919

2020
[Insertion delimiter] = " "

data/fixtures/scopes/csharp/type/type.variable2.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ int foo = 0;
1313
>-<
1414
0| int foo = 0;
1515

16-
[Domain] = 0:0-0:11
17-
>-----------<
16+
[Domain] = 0:0-0:12
17+
>------------<
1818
0| int foo = 0;
1919

2020
[Insertion delimiter] = " "

data/fixtures/scopes/csharp/value/value.field.class.scope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class Foo {
1515
>---<
1616
1| int bar = 0;
1717

18-
[Domain] = 1:4-1:15
19-
>-----------<
18+
[Domain] = 1:4-1:16
19+
>------------<
2020
1| int bar = 0;
2121

2222
[Insertion delimiter] = " "
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
new Foo {aaa = 0, bbb = 0};
1+
new Foo {aaa = 0, bbb = 1};
22
---
33

44
[#1 Content] =
55
[#1 Domain] = 0:0-0:27
66
>---------------------------<
7-
0| new Foo {aaa = 0, bbb = 0};
7+
0| new Foo {aaa = 0, bbb = 1};
88

99

1010
[#2 Content] =
1111
[#2 Domain] = 0:9-0:25
1212
>----------------<
13-
0| new Foo {aaa = 0, bbb = 0};
13+
0| new Foo {aaa = 0, bbb = 1};

0 commit comments

Comments
 (0)