Skip to content

Commit 937a5b8

Browse files
Added argument single line and multiline facets
1 parent 6b20796 commit 937a5b8

File tree

135 files changed

+1515
-194
lines changed

Some content is hidden

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

135 files changed

+1515
-194
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
new Foo(
2+
aaa,
3+
bbb
4+
);
5+
---
6+
7+
[#1 Content] =
8+
[#1 Domain] = 0:8-0:11
9+
>---<
10+
0| new Foo(aaa, bbb);
11+
12+
[#1 Removal] = 0:8-0:13
13+
>-----<
14+
0| new Foo(aaa, bbb);
15+
16+
[#1 Trailing delimiter] = 0:11-0:13
17+
>--<
18+
0| new Foo(aaa, bbb);
19+
20+
[#1 Insertion delimiter] = ", "
21+
22+
23+
[#2 Content] =
24+
[#2 Domain] = 0:13-0:16
25+
>---<
26+
0| new Foo(aaa, bbb);
27+
28+
[#2 Removal] = 0:11-0:16
29+
>-----<
30+
0| new Foo(aaa, bbb);
31+
32+
[#2 Leading delimiter] = 0:11-0:13
33+
>--<
34+
0| new Foo(aaa, bbb);
35+
36+
[#2 Insertion delimiter] = ", "
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
class Foo {
2+
Foo(
3+
int aaa,
4+
int bbb
5+
) {}
6+
}
7+
---
8+
9+
[#1 Content] =
10+
[#1 Domain] = 1:8-1:15
11+
>-------<
12+
1| Foo(int aaa, int bbb) {}
13+
14+
[#1 Removal] = 1:8-1:17
15+
>---------<
16+
1| Foo(int aaa, int bbb) {}
17+
18+
[#1 Trailing delimiter] = 1:15-1:17
19+
>--<
20+
1| Foo(int aaa, int bbb) {}
21+
22+
[#1 Insertion delimiter] = ", "
23+
24+
25+
[#2 Content] =
26+
[#2 Domain] = 1:17-1:24
27+
>-------<
28+
1| Foo(int aaa, int bbb) {}
29+
30+
[#2 Removal] = 1:15-1:24
31+
>---------<
32+
1| Foo(int aaa, int bbb) {}
33+
34+
[#2 Leading delimiter] = 1:15-1:17
35+
>--<
36+
1| Foo(int aaa, int bbb) {}
37+
38+
[#2 Insertion delimiter] = ", "

0 commit comments

Comments
 (0)