|
1 | 1 | graph TD |
2 | 2 | annotations[annotations L2] |
3 | | - annotations --> solver.incorrect_dead_decls |
4 | | - annotations --> liveness.annotated_roots |
| 3 | + annotations -->|join| solver.incorrect_dead_decls |
| 4 | + annotations -->|join| liveness.annotated_roots |
5 | 5 | exc_refs.exception_decls[exc_refs.exception_decls L3] |
6 | | - exc_refs.exception_decls --> exc_refs.resolved_refs |
| 6 | + exc_refs.exception_decls -->|join| exc_refs.resolved_refs |
7 | 7 | type_deps.same_path_refs[type_deps.same_path_refs L4] |
8 | | - type_deps.same_path_refs --> type_deps.u1 |
| 8 | + type_deps.same_path_refs -->|union| type_deps.u1 |
9 | 9 | file_collection[file_collection L0] |
10 | | - file_collection --> file_data_collection |
| 10 | + file_collection -->|flatMap| file_data_collection |
11 | 11 | decl_refs.value_decl_refs[decl_refs.value_decl_refs L7] |
12 | | - decl_refs.value_decl_refs --> decl_refs.with_value_refs |
| 12 | + decl_refs.value_decl_refs -->|join| decl_refs.with_value_refs |
13 | 13 | type_deps.combined_refs_to[type_deps.combined_refs_to L7] |
14 | | - type_deps.combined_refs_to --> type_deps.all_type_refs_from |
| 14 | + type_deps.combined_refs_to -->|flatMap| type_deps.all_type_refs_from |
15 | 15 | type_deps.all_type_refs_from[type_deps.all_type_refs_from L8] |
16 | | - type_deps.all_type_refs_from --> liveness.type_refs_from |
| 16 | + type_deps.all_type_refs_from -->|union| liveness.type_refs_from |
17 | 17 | type_deps.impl_needing_path2[type_deps.impl_needing_path2 L4] |
18 | | - type_deps.impl_needing_path2 --> type_deps.impl_to_intf_refs_path2 |
| 18 | + type_deps.impl_needing_path2 -->|join| type_deps.impl_to_intf_refs_path2 |
19 | 19 | exc_refs.resolved_refs_from[exc_refs.resolved_refs_from L5] |
20 | | - exc_refs.resolved_refs_from --> liveness.value_refs_from |
| 20 | + exc_refs.resolved_refs_from -->|union| liveness.value_refs_from |
21 | 21 | exc_refs.resolved_refs[exc_refs.resolved_refs L4] |
22 | | - exc_refs.resolved_refs --> exc_refs.resolved_refs_from |
| 22 | + exc_refs.resolved_refs -->|flatMap| exc_refs.resolved_refs_from |
23 | 23 | type_deps.impl_to_intf_refs_path2[type_deps.impl_to_intf_refs_path2 L5] |
24 | | - type_deps.impl_to_intf_refs_path2 --> type_deps.u2 |
| 24 | + type_deps.impl_to_intf_refs_path2 -->|union| type_deps.u2 |
25 | 25 | file_deps_map[file_deps_map L2] |
26 | 26 | decl_refs.with_value_refs[decl_refs.with_value_refs L8] |
27 | | - decl_refs.with_value_refs --> decl_refs.combined |
| 27 | + decl_refs.with_value_refs -->|join| decl_refs.combined |
28 | 28 | type_deps.u1[type_deps.u1 L5] |
29 | | - type_deps.u1 --> type_deps.u2 |
| 29 | + type_deps.u1 -->|union| type_deps.u2 |
30 | 30 | cross_file_items[cross_file_items L2] |
31 | | - cross_file_items --> exception_refs_collection |
| 31 | + cross_file_items -->|flatMap| exception_refs_collection |
32 | 32 | decl_refs.decls_by_file[decl_refs.decls_by_file L3] |
33 | | - decl_refs.decls_by_file --> decl_refs.type_decl_refs |
34 | | - decl_refs.decls_by_file --> decl_refs.value_decl_refs |
| 33 | + decl_refs.decls_by_file -->|join| decl_refs.type_decl_refs |
| 34 | + decl_refs.decls_by_file -->|join| decl_refs.value_decl_refs |
35 | 35 | type_deps.impl_to_intf_refs[type_deps.impl_to_intf_refs L4] |
36 | | - type_deps.impl_to_intf_refs --> type_deps.u1 |
| 36 | + type_deps.impl_to_intf_refs -->|union| type_deps.u1 |
37 | 37 | solver.issues_by_file[solver.issues_by_file L17] |
38 | | - solver.issues_by_file --> solver.modules_with_reported |
| 38 | + solver.issues_by_file -->|flatMap| solver.modules_with_reported |
39 | 39 | liveness.annotated_roots[liveness.annotated_roots L3] |
40 | | - liveness.annotated_roots --> liveness.all_roots |
| 40 | + liveness.annotated_roots -->|union| liveness.all_roots |
41 | 41 | solver.incorrect_dead_decls[solver.incorrect_dead_decls L16] |
42 | 42 | type_deps.intf_to_impl_refs[type_deps.intf_to_impl_refs L4] |
43 | | - type_deps.intf_to_impl_refs --> type_deps.combined_refs_to |
| 43 | + type_deps.intf_to_impl_refs -->|union| type_deps.combined_refs_to |
44 | 44 | type_deps.decl_by_path[type_deps.decl_by_path L3] |
45 | | - type_deps.decl_by_path --> type_deps.intf_to_impl_refs |
46 | | - type_deps.decl_by_path --> type_deps.impl_to_intf_refs_path2 |
47 | | - type_deps.decl_by_path --> type_deps.impl_needing_path2 |
48 | | - type_deps.decl_by_path --> type_deps.impl_to_intf_refs |
49 | | - type_deps.decl_by_path --> type_deps.same_path_refs |
| 45 | + type_deps.decl_by_path -->|join| type_deps.intf_to_impl_refs |
| 46 | + type_deps.decl_by_path -->|join| type_deps.impl_to_intf_refs_path2 |
| 47 | + type_deps.decl_by_path -->|join| type_deps.impl_needing_path2 |
| 48 | + type_deps.decl_by_path -->|join| type_deps.impl_to_intf_refs |
| 49 | + type_deps.decl_by_path -->|flatMap| type_deps.same_path_refs |
50 | 50 | type_deps.u2[type_deps.u2 L6] |
51 | | - type_deps.u2 --> type_deps.combined_refs_to |
| 51 | + type_deps.u2 -->|union| type_deps.combined_refs_to |
52 | 52 | solver.live_decls[solver.live_decls L15] |
53 | | - solver.live_decls --> solver.incorrect_dead_decls |
54 | | - solver.live_decls --> solver.modules_with_live |
| 53 | + solver.live_decls -->|join| solver.incorrect_dead_decls |
| 54 | + solver.live_decls -->|flatMap| solver.modules_with_live |
55 | 55 | type_deps.impl_decls[type_deps.impl_decls L3] |
56 | | - type_deps.impl_decls --> type_deps.impl_needing_path2 |
57 | | - type_deps.impl_decls --> type_deps.impl_to_intf_refs |
| 56 | + type_deps.impl_decls -->|join| type_deps.impl_needing_path2 |
| 57 | + type_deps.impl_decls -->|join| type_deps.impl_to_intf_refs |
58 | 58 | liveness.all_roots[liveness.all_roots L12] |
59 | | - liveness.all_roots --> liveness.live |
| 59 | + liveness.all_roots -->|roots| liveness.live |
60 | 60 | solver.dead_modules[solver.dead_modules L17] |
61 | | - solver.dead_modules --> solver.dead_module_issues |
| 61 | + solver.dead_modules -->|join| solver.dead_module_issues |
62 | 62 | liveness.external_type_refs[liveness.external_type_refs L10] |
63 | | - liveness.external_type_refs --> liveness.externally_referenced |
| 63 | + liveness.external_type_refs -->|union| liveness.externally_referenced |
64 | 64 | decl_refs.combined[decl_refs.combined L12] |
65 | | - decl_refs.combined --> liveness.edges |
| 65 | + decl_refs.combined -->|flatMap| liveness.edges |
66 | 66 | type_refs_from[type_refs_from L2] |
67 | | - type_refs_from --> liveness.type_refs_from |
| 67 | + type_refs_from -->|union| liveness.type_refs_from |
68 | 68 | liveness.type_refs_from[liveness.type_refs_from L9] |
69 | | - liveness.type_refs_from --> liveness.external_type_refs |
70 | | - liveness.type_refs_from --> decl_refs.type_decl_refs |
| 69 | + liveness.type_refs_from -->|join| liveness.external_type_refs |
| 70 | + liveness.type_refs_from -->|join| decl_refs.type_decl_refs |
71 | 71 | solver.dead_decls_by_file[solver.dead_decls_by_file L16] |
72 | | - solver.dead_decls_by_file --> solver.issues_by_file |
| 72 | + solver.dead_decls_by_file -->|flatMap| solver.issues_by_file |
73 | 73 | liveness.external_value_refs[liveness.external_value_refs L7] |
74 | | - liveness.external_value_refs --> liveness.externally_referenced |
| 74 | + liveness.external_value_refs -->|union| liveness.externally_referenced |
75 | 75 | liveness.value_refs_from[liveness.value_refs_from L6] |
76 | | - liveness.value_refs_from --> liveness.external_value_refs |
77 | | - liveness.value_refs_from --> decl_refs.value_decl_refs |
| 76 | + liveness.value_refs_from -->|join| liveness.external_value_refs |
| 77 | + liveness.value_refs_from -->|join| decl_refs.value_decl_refs |
78 | 78 | value_refs_from[value_refs_from L2] |
79 | | - value_refs_from --> liveness.value_refs_from |
| 79 | + value_refs_from -->|union| liveness.value_refs_from |
80 | 80 | solver.modules_with_dead[solver.modules_with_dead L16] |
81 | | - solver.modules_with_dead --> solver.dead_modules |
| 81 | + solver.modules_with_dead -->|join| solver.dead_modules |
82 | 82 | solver.dead_decls[solver.dead_decls L15] |
83 | | - solver.dead_decls --> solver.dead_decls_by_file |
84 | | - solver.dead_decls --> solver.modules_with_dead |
| 83 | + solver.dead_decls -->|flatMap| solver.dead_decls_by_file |
| 84 | + solver.dead_decls -->|flatMap| solver.modules_with_dead |
85 | 85 | exception_refs_collection[exception_refs_collection L3] |
86 | | - exception_refs_collection --> exc_refs.resolved_refs |
| 86 | + exception_refs_collection -->|join| exc_refs.resolved_refs |
87 | 87 | type_deps.intf_decls[type_deps.intf_decls L3] |
88 | | - type_deps.intf_decls --> type_deps.intf_to_impl_refs |
| 88 | + type_deps.intf_decls -->|join| type_deps.intf_to_impl_refs |
89 | 89 | file_data_collection[file_data_collection L1] |
90 | | - file_data_collection --> files |
91 | | - file_data_collection --> file_deps_map |
92 | | - file_data_collection --> cross_file_items |
93 | | - file_data_collection --> type_refs_from |
94 | | - file_data_collection --> value_refs_from |
95 | | - file_data_collection --> annotations |
96 | | - file_data_collection --> decls |
| 90 | + file_data_collection -->|flatMap| files |
| 91 | + file_data_collection -->|flatMap| file_deps_map |
| 92 | + file_data_collection -->|flatMap| cross_file_items |
| 93 | + file_data_collection -->|flatMap| type_refs_from |
| 94 | + file_data_collection -->|flatMap| value_refs_from |
| 95 | + file_data_collection -->|flatMap| annotations |
| 96 | + file_data_collection -->|flatMap| decls |
97 | 97 | solver.dead_module_issues[solver.dead_module_issues L19] |
98 | 98 | decl_refs.with_type_refs[decl_refs.with_type_refs L11] |
99 | | - decl_refs.with_type_refs --> decl_refs.combined |
| 99 | + decl_refs.with_type_refs -->|join| decl_refs.combined |
100 | 100 | solver.modules_with_live[solver.modules_with_live L16] |
101 | | - solver.modules_with_live --> solver.dead_modules |
| 101 | + solver.modules_with_live -->|join| solver.dead_modules |
102 | 102 | decl_refs.type_decl_refs[decl_refs.type_decl_refs L10] |
103 | | - decl_refs.type_decl_refs --> decl_refs.with_type_refs |
| 103 | + decl_refs.type_decl_refs -->|join| decl_refs.with_type_refs |
104 | 104 | files[files L2] |
105 | 105 | solver.modules_with_reported[solver.modules_with_reported L18] |
106 | | - solver.modules_with_reported --> solver.dead_module_issues |
| 106 | + solver.modules_with_reported -->|join| solver.dead_module_issues |
107 | 107 | liveness.externally_referenced[liveness.externally_referenced L11] |
108 | | - liveness.externally_referenced --> liveness.all_roots |
| 108 | + liveness.externally_referenced -->|union| liveness.all_roots |
109 | 109 | liveness.edges[liveness.edges L13] |
110 | | - liveness.edges --> liveness.live |
| 110 | + liveness.edges -->|edges| liveness.live |
111 | 111 | liveness.live[liveness.live L14] |
112 | | - liveness.live --> solver.live_decls |
113 | | - liveness.live --> solver.dead_decls |
| 112 | + liveness.live -->|join| solver.live_decls |
| 113 | + liveness.live -->|join| solver.dead_decls |
114 | 114 | decls[decls L2] |
115 | | - decls --> solver.live_decls |
116 | | - decls --> solver.dead_decls |
117 | | - decls --> liveness.annotated_roots |
118 | | - decls --> liveness.external_type_refs |
119 | | - decls --> liveness.external_value_refs |
120 | | - decls --> decl_refs.with_type_refs |
121 | | - decls --> decl_refs.with_value_refs |
122 | | - decls --> decl_refs.decls_by_file |
123 | | - decls --> exc_refs.exception_decls |
124 | | - decls --> type_deps.intf_decls |
125 | | - decls --> type_deps.impl_decls |
126 | | - decls --> type_deps.decl_by_path |
| 115 | + decls -->|join| solver.live_decls |
| 116 | + decls -->|join| solver.dead_decls |
| 117 | + decls -->|join| liveness.annotated_roots |
| 118 | + decls -->|join| liveness.external_type_refs |
| 119 | + decls -->|join| liveness.external_value_refs |
| 120 | + decls -->|join| decl_refs.with_type_refs |
| 121 | + decls -->|join| decl_refs.with_value_refs |
| 122 | + decls -->|flatMap| decl_refs.decls_by_file |
| 123 | + decls -->|flatMap| exc_refs.exception_decls |
| 124 | + decls -->|flatMap| type_deps.intf_decls |
| 125 | + decls -->|flatMap| type_deps.impl_decls |
| 126 | + decls -->|flatMap| type_deps.decl_by_path |
127 | 127 |
|
0 commit comments