Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

13 changes: 0 additions & 13 deletions data/fixtures/scopes/csharp/argumentList.actual.method2.scope

This file was deleted.

13 changes: 0 additions & 13 deletions data/fixtures/scopes/csharp/argumentList.actual2.scope

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions data/fixtures/scopes/csharp/argumentList.formal.lambda2.scope

This file was deleted.

15 changes: 0 additions & 15 deletions data/fixtures/scopes/csharp/argumentList.formal.method2.scope

This file was deleted.

13 changes: 0 additions & 13 deletions data/fixtures/scopes/csharp/argumentList.formal2.scope

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
new Foo(
a,
b
aaa,
bbb
);
---

[Content] =
[Removal] = 0:8-3:0
>
0| new Foo(
1| a,
2| b
1| aaa,
2| bbb
3| );
<

[Domain] = 0:0-3:1
>--------
0| new Foo(
1| a,
2| b
1| aaa,
2| bbb
3| );
-<

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
new Foo(aaa, bbb);
---

[Content] =
[Removal] = 0:8-0:16
>--------<
0| new Foo(aaa, bbb);

[Domain] = 0:0-0:17
>-----------------<
0| new Foo(aaa, bbb);

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
foo.bar(
a,
b
aaa,
bbb
);
---

[Content] =
[Removal] = 0:8-3:0
>
0| foo.bar(
1| a,
2| b
1| aaa,
2| bbb
3| );
<

[Domain] = 0:0-3:1
>--------
0| foo.bar(
1| a,
2| b
1| aaa,
2| bbb
3| );
-<

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
foo.bar(aaa, bbb);
---

[Content] =
[Removal] = 0:8-0:16
>--------<
0| foo.bar(aaa, bbb);

[Domain] = 0:0-0:17
>-----------------<
0| foo.bar(aaa, bbb);

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
foo(
a,
b
aaa,
bbb
);
---

[Content] =
[Removal] = 0:4-3:0
>
0| foo(
1| a,
2| b
1| aaa,
2| bbb
3| );
<

[Domain] = 0:0-3:1
>----
0| foo(
1| a,
2| b
1| aaa,
2| bbb
3| );
-<

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
foo(aaa, bbb);
---

[Content] =
[Removal] = 0:4-0:12
>--------<
0| foo(aaa, bbb);

[Domain] = 0:0-0:13
>-------------<
0| foo(aaa, bbb);

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
class MyClass {
MyClass(
int aaa,
int bbb
) {}
}
---

[Content] =
[Removal] = 1:12-4:4
>
1| MyClass(
2| int aaa,
3| int bbb
4| ) {}
----<

[Domain] = 1:4-4:8
>--------
1| MyClass(
2| int aaa,
3| int bbb
4| ) {}
--------<

[Insertion delimiter] = ",\n"
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class MyClass {
MyClass(int aaa, int bbb) {}
}
---

[Content] =
[Removal] = 1:12-1:28
>----------------<
1| MyClass(int aaa, int bbb) {}

[Domain] = 1:4-1:32
>----------------------------<
1| MyClass(int aaa, int bbb) {}

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
(
aaa,
bbb
) => {};
---

[Content] =
[Removal] = 0:1-3:0
>
0| (
1| aaa,
2| bbb
3| ) => {};
<

[Domain] = 0:0-3:7
>-
0| (
1| aaa,
2| bbb
3| ) => {};
-------<

[Insertion delimiter] = ",\n"
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
(aaa, bbb) => {};
---

[Content] =
[Removal] = 0:1-0:9
>--------<
0| (aaa, bbb) => {};

[Domain] = 0:0-0:16
>----------------<
0| (aaa, bbb) => {};

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
class MyClass {
void foo(
int aaa,
int bbb
) {}
}
---

[Content] =
[Removal] = 1:13-4:4
>
1| void foo(
2| int aaa,
3| int bbb
4| ) {}
----<

[Domain] = 1:4-4:8
>---------
1| void foo(
2| int aaa,
3| int bbb
4| ) {}
--------<

[Insertion delimiter] = ",\n"
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class MyClass {
void foo(int aaa, int bbb) {}
}
---

[Content] =
[Removal] = 1:13-1:29
>----------------<
1| void foo(int aaa, int bbb) {}

[Domain] = 1:4-1:33
>-----------------------------<
1| void foo(int aaa, int bbb) {}

[Insertion delimiter] = ", "
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
void foo(
a,
b
aaa,
bbb
) {}
---

[Content] =
[Removal] = 0:9-3:0
>
0| void foo(
1| a,
2| b
1| aaa,
2| bbb
3| ) {}
<

[Domain] = 0:0-3:4
>---------
0| void foo(
1| a,
2| b
1| aaa,
2| bbb
3| ) {}
----<

Expand Down
Loading
Loading