FIR CFA: attach method graphs to class exit node
Even for non-local classes. This ensures that the CFG edges in this case will only go to a subgraph, not to an unrelated graph.
This commit is contained in:
+317
-301
@@ -5,64 +5,57 @@ digraph kt44814_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
3 [label="Enter class FlyweightCapableTreeStructure [1]" style="filled" fillcolor=red];
|
||||
4 [label="Exit class FlyweightCapableTreeStructure [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_1 {
|
||||
color=blue
|
||||
0 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
1 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
2 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
3 -> {4} [color=green];
|
||||
4 -> {0} [color=green];
|
||||
4 -> {0} [style=dashed];
|
||||
0 -> {1};
|
||||
1 -> {2};
|
||||
|
||||
subgraph cluster_1 {
|
||||
color=red
|
||||
3 [label="Enter class FlyweightCapableTreeStructure [1]" style="filled" fillcolor=red];
|
||||
4 [label="Exit class FlyweightCapableTreeStructure [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
3 -> {4} [color=green];
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=red
|
||||
5 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
6 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
7 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
5 -> {6};
|
||||
6 -> {7};
|
||||
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
8 [label="Enter class FirSourceElement [1]" style="filled" fillcolor=red];
|
||||
9 [label="Exit class FirSourceElement [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_3 {
|
||||
color=blue
|
||||
5 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
6 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
7 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
8 -> {9} [color=green];
|
||||
9 -> {5} [color=green];
|
||||
9 -> {5} [style=dashed];
|
||||
5 -> {6};
|
||||
6 -> {7};
|
||||
|
||||
subgraph cluster_4 {
|
||||
color=red
|
||||
10 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
11 [label="Delegated constructor call: super<R|FirSourceElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
12 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
10 -> {11};
|
||||
11 -> {12};
|
||||
|
||||
subgraph cluster_5 {
|
||||
color=red
|
||||
22 [label="Enter class FirPsiSourceElement [1]" style="filled" fillcolor=red];
|
||||
23 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_6 {
|
||||
subgraph cluster_5 {
|
||||
color=blue
|
||||
13 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
14 [label="Access variable R|<local>/psi| [2]"];
|
||||
15 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
24 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_7 {
|
||||
subgraph cluster_6 {
|
||||
color=blue
|
||||
16 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
17 [label="Access variable R|<local>/lighterASTNode| [2]"];
|
||||
18 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
25 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_8 {
|
||||
subgraph cluster_7 {
|
||||
color=blue
|
||||
19 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
20 [label="Access variable R|<local>/treeStructure| [2]"];
|
||||
@@ -70,6 +63,12 @@ digraph kt44814_kt {
|
||||
}
|
||||
26 [label="Exit class FirPsiSourceElement [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_8 {
|
||||
color=blue
|
||||
10 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
11 [label="Delegated constructor call: super<R|FirSourceElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
12 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
22 -> {23} [color=green];
|
||||
23 -> {13} [color=green];
|
||||
23 -> {24} [style=dotted];
|
||||
@@ -80,6 +79,8 @@ digraph kt44814_kt {
|
||||
25 -> {19} [color=green];
|
||||
25 -> {26} [style=dotted];
|
||||
25 -> {19} [style=dashed];
|
||||
26 -> {10} [color=green];
|
||||
26 -> {10} [style=dashed];
|
||||
13 -> {14};
|
||||
14 -> {15};
|
||||
15 -> {24} [color=green];
|
||||
@@ -89,28 +90,21 @@ digraph kt44814_kt {
|
||||
19 -> {20};
|
||||
20 -> {21};
|
||||
21 -> {26} [color=green];
|
||||
10 -> {11};
|
||||
11 -> {12};
|
||||
|
||||
subgraph cluster_9 {
|
||||
color=red
|
||||
27 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
28 [label="Delegated constructor call: super<R|FirSourceElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
29 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
27 -> {28};
|
||||
28 -> {29};
|
||||
|
||||
subgraph cluster_10 {
|
||||
color=red
|
||||
36 [label="Enter class FirLightSourceElement [1]" style="filled" fillcolor=red];
|
||||
37 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_11 {
|
||||
subgraph cluster_10 {
|
||||
color=blue
|
||||
30 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
31 [label="Access variable R|<local>/lighterASTNode| [2]"];
|
||||
32 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
38 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_12 {
|
||||
subgraph cluster_11 {
|
||||
color=blue
|
||||
33 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
34 [label="Access variable R|<local>/treeStructure| [2]"];
|
||||
@@ -118,6 +112,12 @@ digraph kt44814_kt {
|
||||
}
|
||||
39 [label="Exit class FirLightSourceElement [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_12 {
|
||||
color=blue
|
||||
27 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
28 [label="Delegated constructor call: super<R|FirSourceElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
29 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
36 -> {37} [color=green];
|
||||
37 -> {30} [color=green];
|
||||
37 -> {38} [style=dotted];
|
||||
@@ -125,67 +125,75 @@ digraph kt44814_kt {
|
||||
38 -> {33} [color=green];
|
||||
38 -> {39} [style=dotted];
|
||||
38 -> {33} [style=dashed];
|
||||
39 -> {27} [color=green];
|
||||
39 -> {27} [style=dashed];
|
||||
30 -> {31};
|
||||
31 -> {32};
|
||||
32 -> {38} [color=green];
|
||||
33 -> {34};
|
||||
34 -> {35};
|
||||
35 -> {39} [color=green];
|
||||
27 -> {28};
|
||||
28 -> {29};
|
||||
|
||||
subgraph cluster_13 {
|
||||
color=red
|
||||
40 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
41 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
42 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
40 -> {41};
|
||||
41 -> {42};
|
||||
|
||||
subgraph cluster_14 {
|
||||
color=red
|
||||
43 [label="Enter class PsiElement [1]" style="filled" fillcolor=red];
|
||||
44 [label="Exit class PsiElement [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_14 {
|
||||
color=blue
|
||||
40 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
41 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
42 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
43 -> {44} [color=green];
|
||||
44 -> {40} [color=green];
|
||||
44 -> {40} [style=dashed];
|
||||
40 -> {41};
|
||||
41 -> {42};
|
||||
|
||||
subgraph cluster_15 {
|
||||
color=red
|
||||
45 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
46 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
47 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
45 -> {46};
|
||||
46 -> {47};
|
||||
|
||||
subgraph cluster_16 {
|
||||
color=red
|
||||
48 [label="Enter class ASTNode [1]" style="filled" fillcolor=red];
|
||||
49 [label="Exit class ASTNode [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_16 {
|
||||
color=blue
|
||||
45 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
46 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
47 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
48 -> {49} [color=green];
|
||||
49 -> {45} [color=green];
|
||||
49 -> {45} [style=dashed];
|
||||
45 -> {46};
|
||||
46 -> {47};
|
||||
|
||||
subgraph cluster_17 {
|
||||
color=red
|
||||
50 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
70 [label="Enter class LighterASTNode [1]" style="filled" fillcolor=red];
|
||||
71 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_18 {
|
||||
color=blue
|
||||
53 [label="Enter default value of _children [3]" style="filled" fillcolor=red];
|
||||
54 [label="Function call: R|kotlin/collections/emptyList|<R|LighterASTNode?|>() [3]" style="filled" fillcolor=yellow];
|
||||
55 [label="Exit default value of _children [3]" style="filled" fillcolor=red];
|
||||
56 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
57 [label="Access variable R|<local>/_children| [2]"];
|
||||
58 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
51 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
52 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
72 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_19 {
|
||||
color=blue
|
||||
66 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
67 [label="Access qualifier /TokenType [2]"];
|
||||
68 [label="Access variable R|/TokenType.Companion.MODIFIER_LIST| [2]"];
|
||||
69 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
73 [label="Exit class LighterASTNode [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
50 -> {51 53};
|
||||
51 -> {52};
|
||||
53 -> {54};
|
||||
53 -> {53} [style=dashed];
|
||||
54 -> {55};
|
||||
|
||||
subgraph cluster_19 {
|
||||
color=red
|
||||
subgraph cluster_20 {
|
||||
color=blue
|
||||
59 [label="Enter function getChildren [2]" style="filled" fillcolor=red];
|
||||
subgraph cluster_20 {
|
||||
subgraph cluster_21 {
|
||||
color=blue
|
||||
60 [label="Enter block [2]"];
|
||||
61 [label="Access variable R|/LighterASTNode._children| [2]"];
|
||||
@@ -195,33 +203,17 @@ digraph kt44814_kt {
|
||||
}
|
||||
65 [label="Exit function getChildren [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
59 -> {60};
|
||||
60 -> {61};
|
||||
61 -> {62};
|
||||
62 -> {65};
|
||||
62 -> {63} [style=dotted];
|
||||
63 -> {64} [style=dotted];
|
||||
64 -> {65} [style=dotted];
|
||||
|
||||
subgraph cluster_21 {
|
||||
color=red
|
||||
70 [label="Enter class LighterASTNode [1]" style="filled" fillcolor=red];
|
||||
71 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_22 {
|
||||
color=blue
|
||||
56 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
57 [label="Access variable R|<local>/_children| [2]"];
|
||||
58 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
72 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
66 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
67 [label="Access qualifier /TokenType [2]"];
|
||||
68 [label="Access variable R|/TokenType.Companion.MODIFIER_LIST| [2]"];
|
||||
69 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
73 [label="Exit class LighterASTNode [1]" style="filled" fillcolor=red];
|
||||
subgraph cluster_22 {
|
||||
color=blue
|
||||
50 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
51 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
52 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
53 [label="Enter default value of _children [3]" style="filled" fillcolor=red];
|
||||
54 [label="Function call: R|kotlin/collections/emptyList|<R|LighterASTNode?|>() [3]" style="filled" fillcolor=yellow];
|
||||
55 [label="Exit default value of _children [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
70 -> {71} [color=green];
|
||||
71 -> {56} [color=green];
|
||||
@@ -230,6 +222,8 @@ digraph kt44814_kt {
|
||||
72 -> {66} [color=green];
|
||||
72 -> {73} [style=dotted];
|
||||
72 -> {66} [style=dashed];
|
||||
73 -> {50 59} [color=green];
|
||||
73 -> {50 59} [style=dashed];
|
||||
56 -> {57};
|
||||
57 -> {58};
|
||||
58 -> {72} [color=green];
|
||||
@@ -237,30 +231,24 @@ digraph kt44814_kt {
|
||||
67 -> {68};
|
||||
68 -> {69};
|
||||
69 -> {73} [color=green];
|
||||
50 -> {51 53};
|
||||
51 -> {52};
|
||||
53 -> {54};
|
||||
53 -> {53} [style=dashed];
|
||||
54 -> {55};
|
||||
59 -> {60};
|
||||
60 -> {61};
|
||||
61 -> {62};
|
||||
62 -> {65};
|
||||
62 -> {63} [style=dotted];
|
||||
63 -> {64} [style=dotted];
|
||||
64 -> {65} [style=dotted];
|
||||
|
||||
subgraph cluster_24 {
|
||||
color=red
|
||||
74 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
75 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
76 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
74 -> {75};
|
||||
75 -> {76};
|
||||
|
||||
subgraph cluster_25 {
|
||||
color=red
|
||||
77 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
78 [label="Delegated constructor call: super<R|kotlin/Any|>() [3]" style="filled" fillcolor=yellow];
|
||||
79 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
77 -> {78};
|
||||
78 -> {79};
|
||||
|
||||
subgraph cluster_26 {
|
||||
color=red
|
||||
83 [label="Enter class Companion [2]" style="filled" fillcolor=red];
|
||||
84 [label="Part of class initialization [2]"];
|
||||
subgraph cluster_27 {
|
||||
subgraph cluster_25 {
|
||||
color=blue
|
||||
80 [label="Enter property [3]" style="filled" fillcolor=red];
|
||||
81 [label="Function call: R|/TokenType.TokenType|() [3]" style="filled" fillcolor=yellow];
|
||||
@@ -268,67 +256,80 @@ digraph kt44814_kt {
|
||||
}
|
||||
85 [label="Exit class Companion [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_26 {
|
||||
color=blue
|
||||
77 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
78 [label="Delegated constructor call: super<R|kotlin/Any|>() [3]" style="filled" fillcolor=yellow];
|
||||
79 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
83 -> {84} [color=green];
|
||||
84 -> {80} [color=green];
|
||||
84 -> {85} [style=dotted];
|
||||
84 -> {80} [style=dashed];
|
||||
85 -> {77} [color=green];
|
||||
85 -> {77} [style=dashed];
|
||||
80 -> {81};
|
||||
81 -> {82};
|
||||
82 -> {85} [color=green];
|
||||
77 -> {78};
|
||||
78 -> {79};
|
||||
|
||||
subgraph cluster_28 {
|
||||
subgraph cluster_27 {
|
||||
color=red
|
||||
86 [label="Enter class TokenType [1]" style="filled" fillcolor=red];
|
||||
87 [label="Exit class TokenType [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_28 {
|
||||
color=blue
|
||||
74 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
75 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
76 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
86 -> {87} [color=green];
|
||||
87 -> {74} [color=green];
|
||||
87 -> {74} [style=dashed];
|
||||
74 -> {75};
|
||||
75 -> {76};
|
||||
|
||||
subgraph cluster_29 {
|
||||
color=red
|
||||
88 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
89 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
90 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
88 -> {89};
|
||||
89 -> {90};
|
||||
|
||||
subgraph cluster_30 {
|
||||
color=red
|
||||
91 [label="Enter class KtModifierKeywordToken [1]" style="filled" fillcolor=red];
|
||||
92 [label="Exit class KtModifierKeywordToken [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_30 {
|
||||
color=blue
|
||||
88 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
89 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
90 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
91 -> {92} [color=green];
|
||||
92 -> {88} [color=green];
|
||||
92 -> {88} [style=dashed];
|
||||
88 -> {89};
|
||||
89 -> {90};
|
||||
|
||||
subgraph cluster_31 {
|
||||
color=red
|
||||
93 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
94 [label="Delegated constructor call: super<R|PsiElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
95 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
93 -> {94};
|
||||
94 -> {95};
|
||||
|
||||
subgraph cluster_32 {
|
||||
color=red
|
||||
96 [label="Enter class KtModifierList [1]" style="filled" fillcolor=red];
|
||||
97 [label="Exit class KtModifierList [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_32 {
|
||||
color=blue
|
||||
93 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
94 [label="Delegated constructor call: super<R|PsiElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
95 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
96 -> {97} [color=green];
|
||||
97 -> {93} [color=green];
|
||||
97 -> {93} [style=dashed];
|
||||
93 -> {94};
|
||||
94 -> {95};
|
||||
|
||||
subgraph cluster_33 {
|
||||
color=red
|
||||
98 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
99 [label="Delegated constructor call: super<R|PsiElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
100 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
98 -> {99};
|
||||
99 -> {100};
|
||||
|
||||
subgraph cluster_34 {
|
||||
color=red
|
||||
104 [label="Enter class KtModifierListOwner [1]" style="filled" fillcolor=red];
|
||||
105 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_35 {
|
||||
subgraph cluster_34 {
|
||||
color=blue
|
||||
101 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
102 [label="Function call: R|/KtModifierList.KtModifierList|() [2]" style="filled" fillcolor=yellow];
|
||||
@@ -336,61 +337,50 @@ digraph kt44814_kt {
|
||||
}
|
||||
106 [label="Exit class KtModifierListOwner [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_35 {
|
||||
color=blue
|
||||
98 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
99 [label="Delegated constructor call: super<R|PsiElement|>() [2]" style="filled" fillcolor=yellow];
|
||||
100 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
104 -> {105} [color=green];
|
||||
105 -> {101} [color=green];
|
||||
105 -> {106} [style=dotted];
|
||||
105 -> {101} [style=dashed];
|
||||
106 -> {98} [color=green];
|
||||
106 -> {98} [style=dashed];
|
||||
101 -> {102};
|
||||
102 -> {103};
|
||||
103 -> {106} [color=green];
|
||||
98 -> {99};
|
||||
99 -> {100};
|
||||
|
||||
subgraph cluster_36 {
|
||||
color=red
|
||||
107 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
108 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
109 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
121 [label="Enter class FirPsiModifier [2]" style="filled" fillcolor=red];
|
||||
122 [label="Exit class FirPsiModifier [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
107 -> {108};
|
||||
108 -> {109};
|
||||
|
||||
subgraph cluster_37 {
|
||||
color=red
|
||||
color=blue
|
||||
116 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
117 [label="Access variable R|<local>/node| [4]"];
|
||||
118 [label="Access variable R|<local>/token| [4]"];
|
||||
119 [label="Delegated constructor call: super<R|FirModifier<ASTNode>|>(...) [3]" style="filled" fillcolor=yellow];
|
||||
120 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
121 -> {122} [color=green];
|
||||
122 -> {116} [color=green];
|
||||
122 -> {116} [style=dashed];
|
||||
116 -> {117};
|
||||
117 -> {118};
|
||||
118 -> {119};
|
||||
119 -> {120};
|
||||
|
||||
subgraph cluster_38 {
|
||||
color=red
|
||||
121 [label="Enter class FirPsiModifier [2]" style="filled" fillcolor=red];
|
||||
122 [label="Exit class FirPsiModifier [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
121 -> {122} [color=green];
|
||||
|
||||
subgraph cluster_39 {
|
||||
color=red
|
||||
123 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
124 [label="Access variable R|<local>/node| [4]"];
|
||||
125 [label="Access variable R|<local>/token| [4]"];
|
||||
126 [label="Delegated constructor call: super<R|FirModifier<LighterASTNode>|>(...) [3]" style="filled" fillcolor=yellow];
|
||||
127 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
123 -> {124};
|
||||
124 -> {125};
|
||||
125 -> {126};
|
||||
126 -> {127};
|
||||
|
||||
subgraph cluster_40 {
|
||||
color=red
|
||||
131 [label="Enter class FirLightModifier [2]" style="filled" fillcolor=red];
|
||||
132 [label="Part of class initialization [2]"];
|
||||
subgraph cluster_41 {
|
||||
subgraph cluster_39 {
|
||||
color=blue
|
||||
128 [label="Enter property [3]" style="filled" fillcolor=red];
|
||||
129 [label="Access variable R|<local>/tree| [3]"];
|
||||
@@ -398,26 +388,40 @@ digraph kt44814_kt {
|
||||
}
|
||||
133 [label="Exit class FirLightModifier [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_40 {
|
||||
color=blue
|
||||
123 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
124 [label="Access variable R|<local>/node| [4]"];
|
||||
125 [label="Access variable R|<local>/token| [4]"];
|
||||
126 [label="Delegated constructor call: super<R|FirModifier<LighterASTNode>|>(...) [3]" style="filled" fillcolor=yellow];
|
||||
127 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
131 -> {132} [color=green];
|
||||
132 -> {128} [color=green];
|
||||
132 -> {133} [style=dotted];
|
||||
132 -> {128} [style=dashed];
|
||||
133 -> {123} [color=green];
|
||||
133 -> {123} [style=dashed];
|
||||
128 -> {129};
|
||||
129 -> {130};
|
||||
130 -> {133} [color=green];
|
||||
123 -> {124};
|
||||
124 -> {125};
|
||||
125 -> {126};
|
||||
126 -> {127};
|
||||
|
||||
subgraph cluster_42 {
|
||||
subgraph cluster_41 {
|
||||
color=red
|
||||
134 [label="Enter class FirModifier [1]" style="filled" fillcolor=red];
|
||||
135 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_43 {
|
||||
subgraph cluster_42 {
|
||||
color=blue
|
||||
110 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
111 [label="Access variable R|<local>/node| [2]"];
|
||||
112 [label="Exit property [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
136 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_44 {
|
||||
subgraph cluster_43 {
|
||||
color=blue
|
||||
113 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
114 [label="Access variable R|<local>/token| [2]"];
|
||||
@@ -425,6 +429,12 @@ digraph kt44814_kt {
|
||||
}
|
||||
137 [label="Exit class FirModifier [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_44 {
|
||||
color=blue
|
||||
107 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
108 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
109 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
134 -> {135} [color=green];
|
||||
135 -> {110} [color=green];
|
||||
135 -> {136} [style=dotted];
|
||||
@@ -432,36 +442,22 @@ digraph kt44814_kt {
|
||||
136 -> {113} [color=green];
|
||||
136 -> {137} [style=dotted];
|
||||
136 -> {113} [style=dashed];
|
||||
137 -> {107} [color=green];
|
||||
137 -> {107} [style=dashed];
|
||||
110 -> {111};
|
||||
111 -> {112};
|
||||
112 -> {136} [color=green];
|
||||
113 -> {114};
|
||||
114 -> {115};
|
||||
115 -> {137} [color=green];
|
||||
107 -> {108};
|
||||
108 -> {109};
|
||||
|
||||
subgraph cluster_45 {
|
||||
color=red
|
||||
138 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
139 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
140 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
138 -> {139};
|
||||
139 -> {140};
|
||||
|
||||
subgraph cluster_46 {
|
||||
color=red
|
||||
144 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
145 [label="Delegated constructor call: super<R|FirModifierList|>() [3]" style="filled" fillcolor=yellow];
|
||||
146 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
144 -> {145};
|
||||
145 -> {146};
|
||||
|
||||
subgraph cluster_47 {
|
||||
color=red
|
||||
150 [label="Enter class FirPsiModifierList [2]" style="filled" fillcolor=red];
|
||||
151 [label="Part of class initialization [2]"];
|
||||
subgraph cluster_48 {
|
||||
subgraph cluster_46 {
|
||||
color=blue
|
||||
147 [label="Enter property [3]" style="filled" fillcolor=red];
|
||||
148 [label="Access variable R|<local>/modifierList| [3]"];
|
||||
@@ -469,35 +465,36 @@ digraph kt44814_kt {
|
||||
}
|
||||
152 [label="Exit class FirPsiModifierList [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_47 {
|
||||
color=blue
|
||||
144 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
145 [label="Delegated constructor call: super<R|FirModifierList|>() [3]" style="filled" fillcolor=yellow];
|
||||
146 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
150 -> {151} [color=green];
|
||||
151 -> {147} [color=green];
|
||||
151 -> {152} [style=dotted];
|
||||
151 -> {147} [style=dashed];
|
||||
152 -> {144} [color=green];
|
||||
152 -> {144} [style=dashed];
|
||||
147 -> {148};
|
||||
148 -> {149};
|
||||
149 -> {152} [color=green];
|
||||
144 -> {145};
|
||||
145 -> {146};
|
||||
|
||||
subgraph cluster_49 {
|
||||
color=red
|
||||
153 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
154 [label="Delegated constructor call: super<R|FirModifierList|>() [3]" style="filled" fillcolor=yellow];
|
||||
155 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
153 -> {154};
|
||||
154 -> {155};
|
||||
|
||||
subgraph cluster_50 {
|
||||
subgraph cluster_48 {
|
||||
color=red
|
||||
162 [label="Enter class FirLightModifierList [2]" style="filled" fillcolor=red];
|
||||
163 [label="Part of class initialization [2]"];
|
||||
subgraph cluster_51 {
|
||||
subgraph cluster_49 {
|
||||
color=blue
|
||||
156 [label="Enter property [3]" style="filled" fillcolor=red];
|
||||
157 [label="Access variable R|<local>/modifierList| [3]"];
|
||||
158 [label="Exit property [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
164 [label="Part of class initialization [2]"];
|
||||
subgraph cluster_52 {
|
||||
subgraph cluster_50 {
|
||||
color=blue
|
||||
159 [label="Enter property [3]" style="filled" fillcolor=red];
|
||||
160 [label="Access variable R|<local>/tree| [3]"];
|
||||
@@ -505,6 +502,12 @@ digraph kt44814_kt {
|
||||
}
|
||||
165 [label="Exit class FirLightModifierList [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_51 {
|
||||
color=blue
|
||||
153 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
154 [label="Delegated constructor call: super<R|FirModifierList|>() [3]" style="filled" fillcolor=yellow];
|
||||
155 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
162 -> {163} [color=green];
|
||||
163 -> {156} [color=green];
|
||||
163 -> {164} [style=dotted];
|
||||
@@ -512,33 +515,95 @@ digraph kt44814_kt {
|
||||
164 -> {159} [color=green];
|
||||
164 -> {165} [style=dotted];
|
||||
164 -> {159} [style=dashed];
|
||||
165 -> {153} [color=green];
|
||||
165 -> {153} [style=dashed];
|
||||
156 -> {157};
|
||||
157 -> {158};
|
||||
158 -> {164} [color=green];
|
||||
159 -> {160};
|
||||
160 -> {161};
|
||||
161 -> {165} [color=green];
|
||||
153 -> {154};
|
||||
154 -> {155};
|
||||
|
||||
subgraph cluster_53 {
|
||||
subgraph cluster_52 {
|
||||
color=red
|
||||
166 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
167 [label="Delegated constructor call: super<R|kotlin/Any|>() [3]" style="filled" fillcolor=yellow];
|
||||
168 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
282 [label="Enter class Companion [2]" style="filled" fillcolor=red];
|
||||
283 [label="Exit class Companion [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
166 -> {167};
|
||||
167 -> {168};
|
||||
|
||||
subgraph cluster_54 {
|
||||
color=red
|
||||
subgraph cluster_53 {
|
||||
color=blue
|
||||
249 [label="Enter function boxImpl [3]" style="filled" fillcolor=red];
|
||||
subgraph cluster_54 {
|
||||
color=blue
|
||||
250 [label="Enter block [3]"];
|
||||
251 [label="Function call: R|/LighterASTNode.LighterASTNode|() [6]" style="filled" fillcolor=yellow];
|
||||
252 [label="Function call: R|kotlin/collections/listOf|<R|LighterASTNode|>(...) [5]" style="filled" fillcolor=yellow];
|
||||
253 [label="Function call: R|/LighterASTNode.LighterASTNode|(...) [4]" style="filled" fillcolor=yellow];
|
||||
254 [label="Function call: R|/FlyweightCapableTreeStructure.FlyweightCapableTreeStructure|() [4]" style="filled" fillcolor=yellow];
|
||||
255 [label="Function call: R|/FirLightSourceElement.FirLightSourceElement|(...) [3]" style="filled" fillcolor=yellow];
|
||||
256 [label="Variable declaration: lval sourceElement: R|FirSourceElement?| [3]"];
|
||||
257 [label="Access variable R|<local>/sourceElement| [4]"];
|
||||
258 [label="Function call: (this@R|/FirModifierList.Companion|, R|<local>/sourceElement|).R|/FirModifierList.Companion.getModifierList|() [3]" style="filled" fillcolor=yellow];
|
||||
259 [label="Variable declaration: lval result: R|FirModifierList?| [3]"];
|
||||
subgraph cluster_55 {
|
||||
color=blue
|
||||
260 [label="Enter when [3]"];
|
||||
subgraph cluster_56 {
|
||||
color=blue
|
||||
261 [label="Enter when branch condition [4]"];
|
||||
262 [label="Access variable R|<local>/result| [5]"];
|
||||
263 [label="Type operator: (R|<local>/result| is R|FirModifierList.FirLightModifierList|) [5]"];
|
||||
264 [label="Exit when branch condition [4]"];
|
||||
}
|
||||
subgraph cluster_57 {
|
||||
color=blue
|
||||
265 [label="Enter when branch condition else [5]"];
|
||||
266 [label="Exit when branch condition [5]"];
|
||||
}
|
||||
267 [label="Enter when branch result [6]"];
|
||||
subgraph cluster_58 {
|
||||
color=blue
|
||||
268 [label="Enter block [6]"];
|
||||
269 [label="Const: String(Fail) [6]"];
|
||||
270 [label="Exit block [6]"];
|
||||
}
|
||||
271 [label="Exit when branch result [5]"];
|
||||
272 [label="Enter when branch result [5]"];
|
||||
subgraph cluster_59 {
|
||||
color=blue
|
||||
273 [label="Enter block [5]"];
|
||||
274 [label="Const: String(OK) [5]"];
|
||||
275 [label="Exit block [5]"];
|
||||
}
|
||||
276 [label="Exit when branch result [4]"];
|
||||
277 [label="Exit when [3]"];
|
||||
}
|
||||
278 [label="Jump: ^boxImpl when () {
|
||||
(R|<local>/result| is R|FirModifierList.FirLightModifierList|) -> {
|
||||
String(OK)
|
||||
}
|
||||
else -> {
|
||||
String(Fail)
|
||||
}
|
||||
}
|
||||
[3]"];
|
||||
279 [label="Stub [3]" style="filled" fillcolor=gray];
|
||||
280 [label="Exit block [3]" style="filled" fillcolor=gray];
|
||||
}
|
||||
281 [label="Exit function boxImpl [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_60 {
|
||||
color=blue
|
||||
169 [label="Enter function getModifierList [3]" style="filled" fillcolor=red];
|
||||
subgraph cluster_55 {
|
||||
subgraph cluster_61 {
|
||||
color=blue
|
||||
170 [label="Enter block [3]"];
|
||||
subgraph cluster_56 {
|
||||
subgraph cluster_62 {
|
||||
color=blue
|
||||
171 [label="Enter when [3]"];
|
||||
172 [label="Access variable this@R|/FirModifierList.Companion.getModifierList| [4]"];
|
||||
subgraph cluster_57 {
|
||||
subgraph cluster_63 {
|
||||
color=blue
|
||||
173 [label="Enter when branch condition [4]"];
|
||||
174 [label="Exit $subj [5]"];
|
||||
@@ -546,14 +611,14 @@ digraph kt44814_kt {
|
||||
176 [label="Equality operator == [5]"];
|
||||
177 [label="Exit when branch condition [4]"];
|
||||
}
|
||||
subgraph cluster_58 {
|
||||
subgraph cluster_64 {
|
||||
color=blue
|
||||
178 [label="Enter when branch condition [5]"];
|
||||
179 [label="Exit $subj [6]"];
|
||||
180 [label="Type operator: ($subj$ is R|FirPsiSourceElement|) [6]"];
|
||||
181 [label="Exit when branch condition [5]"];
|
||||
}
|
||||
subgraph cluster_59 {
|
||||
subgraph cluster_65 {
|
||||
color=blue
|
||||
182 [label="Enter when branch condition [6]"];
|
||||
183 [label="Exit $subj [7]"];
|
||||
@@ -561,17 +626,17 @@ digraph kt44814_kt {
|
||||
185 [label="Exit when branch condition [6]"];
|
||||
}
|
||||
186 [label="Enter when branch result [7]"];
|
||||
subgraph cluster_60 {
|
||||
subgraph cluster_66 {
|
||||
color=blue
|
||||
187 [label="Enter block [7]"];
|
||||
188 [label="Access variable R|/FirLightSourceElement.lighterASTNode| [9]"];
|
||||
189 [label="Access variable R|/FirLightSourceElement.treeStructure| [9]"];
|
||||
190 [label="Function call: this@R|/FirModifierList.Companion.getModifierList|.R|/FirLightSourceElement.lighterASTNode|.R|/LighterASTNode.getChildren|(...) [8]" style="filled" fillcolor=yellow];
|
||||
191 [label="Postponed enter to lambda [8]"];
|
||||
subgraph cluster_61 {
|
||||
subgraph cluster_67 {
|
||||
color=blue
|
||||
238 [label="Enter function anonymousFunction [9]" style="filled" fillcolor=red];
|
||||
subgraph cluster_62 {
|
||||
subgraph cluster_68 {
|
||||
color=blue
|
||||
239 [label="Enter block [9]"];
|
||||
240 [label="Access variable R|<local>/it| [9]"];
|
||||
@@ -602,7 +667,7 @@ digraph kt44814_kt {
|
||||
}
|
||||
206 [label="Exit when branch result [6]"];
|
||||
207 [label="Enter when branch result [6]"];
|
||||
subgraph cluster_63 {
|
||||
subgraph cluster_69 {
|
||||
color=blue
|
||||
208 [label="Enter block [6]"];
|
||||
209 [label="Access variable R|/FirPsiSourceElement.psi| [6]"];
|
||||
@@ -611,10 +676,10 @@ digraph kt44814_kt {
|
||||
212 [label="Access variable R|/KtModifierListOwner.modifierList| [6]"];
|
||||
213 [label="Enter safe call [6]"];
|
||||
214 [label="Postponed enter to lambda [7]"];
|
||||
subgraph cluster_64 {
|
||||
subgraph cluster_70 {
|
||||
color=blue
|
||||
232 [label="Enter function anonymousFunction [8]" style="filled" fillcolor=red];
|
||||
subgraph cluster_65 {
|
||||
subgraph cluster_71 {
|
||||
color=blue
|
||||
233 [label="Enter block [8]"];
|
||||
234 [label="Access variable R|<local>/it| [9]"];
|
||||
@@ -632,7 +697,7 @@ digraph kt44814_kt {
|
||||
220 [label="Exit when branch result [5]"];
|
||||
221 [label="Merge postponed lambda exits [6]"];
|
||||
222 [label="Enter when branch result [5]"];
|
||||
subgraph cluster_66 {
|
||||
subgraph cluster_72 {
|
||||
color=blue
|
||||
223 [label="Enter block [5]"];
|
||||
224 [label="Const: Null(null) [5]"];
|
||||
@@ -665,6 +730,17 @@ digraph kt44814_kt {
|
||||
}
|
||||
231 [label="Exit function getModifierList [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_73 {
|
||||
color=blue
|
||||
166 [label="Enter function <init> [3]" style="filled" fillcolor=red];
|
||||
167 [label="Delegated constructor call: super<R|kotlin/Any|>() [3]" style="filled" fillcolor=yellow];
|
||||
168 [label="Exit function <init> [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
282 -> {283} [color=green];
|
||||
283 -> {166 169 249} [color=green];
|
||||
283 -> {166 169 249} [style=dashed];
|
||||
166 -> {167};
|
||||
167 -> {168};
|
||||
169 -> {170};
|
||||
170 -> {171};
|
||||
171 -> {172};
|
||||
@@ -751,69 +827,6 @@ digraph kt44814_kt {
|
||||
246 -> {247};
|
||||
247 -> {248};
|
||||
248 -> {192};
|
||||
|
||||
subgraph cluster_67 {
|
||||
color=red
|
||||
249 [label="Enter function boxImpl [3]" style="filled" fillcolor=red];
|
||||
subgraph cluster_68 {
|
||||
color=blue
|
||||
250 [label="Enter block [3]"];
|
||||
251 [label="Function call: R|/LighterASTNode.LighterASTNode|() [6]" style="filled" fillcolor=yellow];
|
||||
252 [label="Function call: R|kotlin/collections/listOf|<R|LighterASTNode|>(...) [5]" style="filled" fillcolor=yellow];
|
||||
253 [label="Function call: R|/LighterASTNode.LighterASTNode|(...) [4]" style="filled" fillcolor=yellow];
|
||||
254 [label="Function call: R|/FlyweightCapableTreeStructure.FlyweightCapableTreeStructure|() [4]" style="filled" fillcolor=yellow];
|
||||
255 [label="Function call: R|/FirLightSourceElement.FirLightSourceElement|(...) [3]" style="filled" fillcolor=yellow];
|
||||
256 [label="Variable declaration: lval sourceElement: R|FirSourceElement?| [3]"];
|
||||
257 [label="Access variable R|<local>/sourceElement| [4]"];
|
||||
258 [label="Function call: (this@R|/FirModifierList.Companion|, R|<local>/sourceElement|).R|/FirModifierList.Companion.getModifierList|() [3]" style="filled" fillcolor=yellow];
|
||||
259 [label="Variable declaration: lval result: R|FirModifierList?| [3]"];
|
||||
subgraph cluster_69 {
|
||||
color=blue
|
||||
260 [label="Enter when [3]"];
|
||||
subgraph cluster_70 {
|
||||
color=blue
|
||||
261 [label="Enter when branch condition [4]"];
|
||||
262 [label="Access variable R|<local>/result| [5]"];
|
||||
263 [label="Type operator: (R|<local>/result| is R|FirModifierList.FirLightModifierList|) [5]"];
|
||||
264 [label="Exit when branch condition [4]"];
|
||||
}
|
||||
subgraph cluster_71 {
|
||||
color=blue
|
||||
265 [label="Enter when branch condition else [5]"];
|
||||
266 [label="Exit when branch condition [5]"];
|
||||
}
|
||||
267 [label="Enter when branch result [6]"];
|
||||
subgraph cluster_72 {
|
||||
color=blue
|
||||
268 [label="Enter block [6]"];
|
||||
269 [label="Const: String(Fail) [6]"];
|
||||
270 [label="Exit block [6]"];
|
||||
}
|
||||
271 [label="Exit when branch result [5]"];
|
||||
272 [label="Enter when branch result [5]"];
|
||||
subgraph cluster_73 {
|
||||
color=blue
|
||||
273 [label="Enter block [5]"];
|
||||
274 [label="Const: String(OK) [5]"];
|
||||
275 [label="Exit block [5]"];
|
||||
}
|
||||
276 [label="Exit when branch result [4]"];
|
||||
277 [label="Exit when [3]"];
|
||||
}
|
||||
278 [label="Jump: ^boxImpl when () {
|
||||
(R|<local>/result| is R|FirModifierList.FirLightModifierList|) -> {
|
||||
String(OK)
|
||||
}
|
||||
else -> {
|
||||
String(Fail)
|
||||
}
|
||||
}
|
||||
[3]"];
|
||||
279 [label="Stub [3]" style="filled" fillcolor=gray];
|
||||
280 [label="Exit block [3]" style="filled" fillcolor=gray];
|
||||
}
|
||||
281 [label="Exit function boxImpl [3]" style="filled" fillcolor=red];
|
||||
}
|
||||
249 -> {250};
|
||||
250 -> {251};
|
||||
251 -> {252};
|
||||
@@ -849,17 +862,10 @@ digraph kt44814_kt {
|
||||
280 -> {281} [style=dotted];
|
||||
|
||||
subgraph cluster_74 {
|
||||
color=red
|
||||
282 [label="Enter class Companion [2]" style="filled" fillcolor=red];
|
||||
283 [label="Exit class Companion [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
282 -> {283} [color=green];
|
||||
|
||||
subgraph cluster_75 {
|
||||
color=red
|
||||
284 [label="Enter class FirModifierList [1]" style="filled" fillcolor=red];
|
||||
285 [label="Part of class initialization [1]"];
|
||||
subgraph cluster_76 {
|
||||
subgraph cluster_75 {
|
||||
color=blue
|
||||
141 [label="Enter property [2]" style="filled" fillcolor=red];
|
||||
142 [label="Function call: R|kotlin/collections/emptyList|<R|FirModifier<*>|>() [2]" style="filled" fillcolor=yellow];
|
||||
@@ -867,13 +873,23 @@ digraph kt44814_kt {
|
||||
}
|
||||
286 [label="Exit class FirModifierList [1]" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_76 {
|
||||
color=blue
|
||||
138 [label="Enter function <init> [2]" style="filled" fillcolor=red];
|
||||
139 [label="Delegated constructor call: super<R|kotlin/Any|>() [2]" style="filled" fillcolor=yellow];
|
||||
140 [label="Exit function <init> [2]" style="filled" fillcolor=red];
|
||||
}
|
||||
284 -> {285} [color=green];
|
||||
285 -> {141} [color=green];
|
||||
285 -> {286} [style=dotted];
|
||||
285 -> {141} [style=dashed];
|
||||
286 -> {138} [color=green];
|
||||
286 -> {138} [style=dashed];
|
||||
141 -> {142};
|
||||
142 -> {143};
|
||||
143 -> {286} [color=green];
|
||||
138 -> {139};
|
||||
139 -> {140};
|
||||
|
||||
subgraph cluster_77 {
|
||||
color=red
|
||||
|
||||
Reference in New Issue
Block a user