-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathvalue.yield.scope
More file actions
62 lines (47 loc) · 1019 Bytes
/
Copy pathvalue.yield.scope
File metadata and controls
62 lines (47 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
switch (value) {
case 1:
yield "foo";
default:
yield "bar";
}
---
[#1 Content] =
[#1 Removal] = 0:8-0:13
>-----<
0| switch (value) {
[#1 Domain] = 0:0-5:1
>----------------
0| switch (value) {
1| case 1:
2| yield "foo";
3| default:
4| yield "bar";
5| }
-<
[#1 Insertion delimiter] = " "
[#2 Content] = 2:14-2:19
>-----<
2| yield "foo";
[#2 Removal] = 2:13-2:19
>------<
2| yield "foo";
[#2 Leading delimiter] = 2:13-2:14
>-<
2| yield "foo";
[#2 Domain] = 2:8-2:20
>------------<
2| yield "foo";
[#2 Insertion delimiter] = " "
[#3 Content] = 4:14-4:19
>-----<
4| yield "bar";
[#3 Removal] = 4:13-4:19
>------<
4| yield "bar";
[#3 Leading delimiter] = 4:13-4:14
>-<
4| yield "bar";
[#3 Domain] = 4:8-4:20
>------------<
4| yield "bar";
[#3 Insertion delimiter] = " "