Skip to content

Commit 3ce6326

Browse files
Added missing argument scope implementations (#2945)
1 parent fbfb7aa commit 3ce6326

File tree

147 files changed

+1580
-402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+1580
-402
lines changed

data/fixtures/scopes/csharp/argumentList.actual.constructor2.scope

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.actual.method2.scope

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.actual2.scope

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.formal.constructor2.scope

Lines changed: 0 additions & 15 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.formal.lambda2.scope

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.formal.method2.scope

Lines changed: 0 additions & 15 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.formal2.scope

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/fixtures/scopes/csharp/argumentList.actual.constructor3.scope renamed to data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.multiLine.scope

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
new Foo(
2-
a,
3-
b
2+
aaa,
3+
bbb
44
);
55
---
66

77
[Content] =
88
[Removal] = 0:8-3:0
99
>
1010
0| new Foo(
11-
1| a,
12-
2| b
11+
1| aaa,
12+
2| bbb
1313
3| );
1414
<
1515

1616
[Domain] = 0:0-3:1
1717
>--------
1818
0| new Foo(
19-
1| a,
20-
2| b
19+
1| aaa,
20+
2| bbb
2121
3| );
2222
-<
2323

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
new Foo(aaa, bbb);
2+
---
3+
4+
[Content] =
5+
[Removal] = 0:8-0:16
6+
>--------<
7+
0| new Foo(aaa, bbb);
8+
9+
[Domain] = 0:0-0:17
10+
>-----------------<
11+
0| new Foo(aaa, bbb);
12+
13+
[Insertion delimiter] = ", "

0 commit comments

Comments
 (0)