-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.dot
2524 lines (2072 loc) · 70.9 KB
/
test.dot
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
graph 589221589
{
label="Abstract Syntax Tree of test.lts\n\n"
compound="true"
splines="line"
color=""
style=""
fontname="Consolas, monospace"
labelloc="top"
ranksep="1"
node [
fontname="Consolas, monospace"
]
{rank=same;1779829230;1561841182;1093386059;1156193118;148546009;283721939;1002795859;1416950953;683982598;1536159789;557446957;}
1779829230 -- 1561841182 [style=invis];1561841182 -- 1093386059 [style=invis];1093386059 -- 1156193118 [style=invis];1156193118 -- 148546009 [style=invis];148546009 -- 283721939 [style=invis];283721939 -- 1002795859 [style=invis];1002795859 -- 1416950953 [style=invis];1416950953 -- 683982598 [style=invis];683982598 -- 1536159789 [style=invis];1536159789 -- 557446957 [style=invis];
subgraph cluster_1779829230{
style=invis
1779829230 [label="import",color="fuchsia",tooltip="import statement"]
{rank=same;1972608862;}
1779829230 -- 1972608862
subgraph cluster_1972608862{
style=invis
1972608862 [label="from",color="navy",tooltip="from statement"]
{rank=same;1695930886;}
1972608862 -- 1695930886
subgraph cluster_1695930886{
style=invis
1695930886 [label="origin.utils",color="grey",tooltip="origin name"]
}
}
1779829230 -- 895843611 [lhead=cluster_804293035]
subgraph cluster_804293035
{
label="imports"
compound="true"
splines="line"
color="peru"
style=""
{rank=same;895843611;}
subgraph cluster_895843611{
style=invis
895843611 [label="someType",color="grey",tooltip="name"]
}
}
}
subgraph cluster_1561841182{
style=invis
1561841182 [label="import",color="fuchsia",tooltip="import statement"]
{rank=same;788129015;}
1561841182 -- 788129015
subgraph cluster_788129015{
style=invis
788129015 [label="from",color="navy",tooltip="from statement"]
{rank=same;1957408246;}
788129015 -- 1957408246
subgraph cluster_1957408246{
style=invis
1957408246 [label="bar",color="grey",tooltip="origin name"]
}
}
1561841182 -- 177879767 [lhead=cluster_952573737]
subgraph cluster_952573737
{
label="imports"
compound="true"
splines="line"
color="peru"
style=""
{rank=same;177879767;}
subgraph cluster_177879767{
style=invis
177879767 [label="foo",color="grey",tooltip="name"]
}
}
}
subgraph cluster_1093386059{
style=invis
1093386059 [label="using",color="",tooltip="UsingNode"]
{rank=same;2026100949;}
1093386059 -- 2026100949
subgraph cluster_2026100949{
style=invis
2026100949 [label="std.collections",color="grey",tooltip="name"]
}
}
subgraph cluster_1156193118{
style=invis
1156193118 [label="namespace",color="cornflowerblue",tooltip="namespace declaration"]
{rank=same;1594193601;}
1156193118 -- 1594193601
subgraph cluster_1594193601{
style=invis
1594193601 [label="std.foo.bar.my_space",color="grey",tooltip="namespace name"]
}
}
subgraph cluster_148546009{
style=invis
148546009 [label="struct test",color="StructNode"]
{rank=same;}
148546009 -- 1475886195 [lhead=cluster_618363909]
subgraph cluster_618363909
{
label="Fields"
compound="true"
splines="line"
color=""
style=""
{rank=same;315806144;1475886195;}
315806144 -- 1475886195 [style=invis];
subgraph cluster_315806144{
style=invis
315806144 [label="someStuff",color="grey",tooltip="name"]
{rank=same;331126581;}
315806144 -- 331126581
subgraph cluster_331126581{
style=invis
331126581 [label="int",color="grey",tooltip="name"]
}
}
subgraph cluster_1475886195{
style=invis
1475886195 [label="otherStuff",color="grey",tooltip="name"]
{rank=same;1609508665;40728594;}
1609508665 -- 40728594 [style=invis];
1475886195 -- 1609508665
subgraph cluster_1609508665{
style=invis
1609508665 [label="str",color="grey",tooltip="name"]
}
1475886195 -- 40728594
subgraph cluster_40728594{
style=invis
40728594 [label="+",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1506634275;398915965;}
1506634275 -- 398915965 [style=invis];
40728594 -- 1506634275
subgraph cluster_1506634275{
style=invis
1506634275 [label="'58'",color="orange",tooltip="StringNode"]
}
40728594 -- 398915965
subgraph cluster_398915965{
style=invis
398915965 [label="hi",color="grey",tooltip="name"]
}
}
}
}
}
subgraph cluster_283721939{
style=invis
283721939 [label="func someFunc1",color="indianred",tooltip="FunctionDeclarationNode"]
{rank=same;2090347005;}
283721939 -- 2090347005
subgraph cluster_2090347005{
style=invis
2090347005 [label="return type"]
{rank=same;880157707;}
2090347005 -- 880157707
subgraph cluster_880157707{
style=invis
880157707 [label="int",color="grey",tooltip="name"]
}
}
283721939 -- 1251046355 [lhead=cluster_806610709]
subgraph cluster_806610709
{
label="parameters"
compound="true"
splines="line"
color=""
style=""
{rank=same;2055640009;1640946962;1251046355;359277248;}
2055640009 -- 1640946962 [style=invis];1640946962 -- 1251046355 [style=invis];1251046355 -- 359277248 [style=invis];
subgraph cluster_2055640009{
style=invis
2055640009 [label="a",color="grey",tooltip="name"]
{rank=same;1187234150;}
2055640009 -- 1187234150
subgraph cluster_1187234150{
style=invis
1187234150 [label="char",color="grey",tooltip="name"]
}
}
subgraph cluster_1640946962{
style=invis
1640946962 [label="b",color="grey",tooltip="name"]
{rank=same;935183671;}
1640946962 -- 935183671
subgraph cluster_935183671{
style=invis
935183671 [label="string",color="grey",tooltip="name"]
}
}
subgraph cluster_1251046355{
style=invis
1251046355 [label="c",color="grey",tooltip="name"]
{rank=same;568311005;}
1251046355 -- 568311005
subgraph cluster_568311005{
style=invis
568311005 [label="string",color="grey",tooltip="name"]
}
}
subgraph cluster_359277248{
style=invis
359277248 [label="d",color="grey",tooltip="name"]
{rank=same;59656266;}
359277248 -- 59656266
subgraph cluster_59656266{
style=invis
59656266 [label="int",color="grey",tooltip="name"]
}
}
}
283721939 -- 58138165 [lhead=cluster_93231985]
subgraph cluster_93231985
{
label="someFunc1()'s body"
compound="true"
splines="line"
color="darkviolet"
style=""
{rank=same;58138165;}
subgraph cluster_58138165{
style=invis
58138165 [label="print",color="",tooltip="PrintNode"]
{rank=same;279465681;}
58138165 -- 279465681
subgraph cluster_279465681{
style=invis
279465681 [label="+",color="dodgerblue",tooltip="OperationNode"]
{rank=same;918381126;91355749;}
918381126 -- 91355749 [style=invis];
279465681 -- 918381126
subgraph cluster_918381126{
style=invis
918381126 [label="+",color="dodgerblue",tooltip="OperationNode"]
{rank=same;77992276;2072233872;}
77992276 -- 2072233872 [style=invis];
918381126 -- 77992276
subgraph cluster_77992276{
style=invis
77992276 [label="a.toString(...)",color="tomato",tooltip="call to a function"]
{rank=same;}
77992276 -- 1967349277 [lhead=cluster_1577340855]
subgraph cluster_1577340855
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;1967349277;}
subgraph cluster_1967349277{
style=invis
1967349277 [label="_ghost",style="invis"]
}
}
}
918381126 -- 2072233872
subgraph cluster_2072233872{
style=invis
2072233872 [label="b",color="grey",tooltip="name"]
}
}
279465681 -- 91355749
subgraph cluster_91355749{
style=invis
91355749 [label="c",color="grey",tooltip="name"]
}
}
}
}
}
subgraph cluster_1002795859{
style=invis
1002795859 [label="func someFunc2",color="indianred",tooltip="FunctionDeclarationNode"]
{rank=same;}
1002795859 -- 414667399 [lhead=cluster_121401353]
subgraph cluster_121401353
{
label="parameters"
compound="true"
splines="line"
color=""
style=""
{rank=same;869209117;414667399;1229001176;}
869209117 -- 414667399 [style=invis];414667399 -- 1229001176 [style=invis];
subgraph cluster_869209117{
style=invis
869209117 [label="seed",color="grey",tooltip="name"]
{rank=same;484976877;}
869209117 -- 484976877
subgraph cluster_484976877{
style=invis
484976877 [label="int",color="grey",tooltip="name"]
}
}
subgraph cluster_414667399{
style=invis
414667399 [label="min",color="grey",tooltip="name"]
{rank=same;338081930;1261867810;}
338081930 -- 1261867810 [style=invis];
414667399 -- 338081930
subgraph cluster_338081930{
style=invis
338081930 [label="int",color="grey",tooltip="name"]
}
414667399 -- 1261867810
subgraph cluster_1261867810{
style=invis
1261867810 [label="0",color="",tooltip="Double"]
}
}
subgraph cluster_1229001176{
style=invis
1229001176 [label="max",color="grey",tooltip="name"]
{rank=same;1210836755;}
1229001176 -- 1210836755
subgraph cluster_1210836755{
style=invis
1210836755 [label="int",color="grey",tooltip="name"]
}
}
}
1002795859 -- 1789727388 [lhead=cluster_1151816300]
subgraph cluster_1151816300
{
label="someFunc2()'s body"
compound="true"
splines="line"
color="darkviolet"
style=""
{rank=same;1789727388;}
subgraph cluster_1789727388{
style=invis
1789727388 [label="return",color="brown",tooltip="return statement"]
{rank=same;580740417;}
1789727388 -- 580740417
subgraph cluster_580740417{
style=invis
580740417 [label="func call",color="tomato",tooltip="call to a function"]
{rank=same;565424548;}
580740417 -- 565424548
subgraph cluster_565424548{
style=invis
565424548 [label="function"]
{rank=same;2007917441;}
565424548 -- 2007917441
subgraph cluster_2007917441{
style=invis
2007917441 [label=".",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1636360232;990137715;}
1636360232 -- 990137715 [style=invis];
2007917441 -- 1636360232
subgraph cluster_1636360232{
style=invis
1636360232 [label="obj creation",color="indigo",tooltip="object creation/ctor call"]
{rank=same;92164140;}
1636360232 -- 92164140
subgraph cluster_92164140{
style=invis
92164140 [label="Random",color="",tooltip="class name"]
}
1636360232 -- 1607842202 [lhead=cluster_2100991805]
subgraph cluster_2100991805
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;1607842202;}
subgraph cluster_1607842202{
style=invis
1607842202 [label="seed",color="grey",tooltip="name"]
}
}
}
2007917441 -- 990137715
subgraph cluster_990137715{
style=invis
990137715 [label="next",color="grey",tooltip="name"]
}
}
}
580740417 -- 1310474143 [lhead=cluster_2091726892]
subgraph cluster_2091726892
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;1440852676;1310474143;}
1440852676 -- 1310474143 [style=invis];
subgraph cluster_1440852676{
style=invis
1440852676 [label="min",color="grey",tooltip="name"]
}
subgraph cluster_1310474143{
style=invis
1310474143 [label="max",color="grey",tooltip="name"]
}
}
}
}
}
}
subgraph cluster_1416950953{
style=invis
1416950953 [label="func someFunc",color="indianred",tooltip="FunctionDeclarationNode"]
{rank=same;}
1416950953 -- 486666562 [lhead=cluster_58755742]
subgraph cluster_58755742
{
label="parameters"
compound="true"
splines="line"
color=""
style=""
{rank=same;486666562;}
subgraph cluster_486666562{
style=invis
486666562 [label="_ghost",style="invis"]
}
}
1416950953 -- 787513844 [lhead=cluster_2095244342]
subgraph cluster_2095244342
{
label="someFunc()'s body"
compound="true"
splines="line"
color="darkviolet"
style=""
{rank=same;2091974816;787513844;}
2091974816 -- 787513844 [style=invis];
subgraph cluster_2091974816{
style=invis
2091974816 [label="print",color="",tooltip="PrintNode"]
{rank=same;93098766;}
2091974816 -- 93098766
subgraph cluster_93098766{
style=invis
93098766 [label="'called!'",color="orange",tooltip="StringNode"]
}
}
subgraph cluster_787513844{
style=invis
787513844 [label="return",color="brown",tooltip="return statement"]
}
}
}
subgraph cluster_683982598{
style=invis
683982598 [label="func main",color="indianred",tooltip="FunctionDeclarationNode"]
{rank=same;}
683982598 -- 668484054 [lhead=cluster_809234931]
subgraph cluster_809234931
{
label="parameters"
compound="true"
splines="line"
color=""
style=""
{rank=same;668484054;}
subgraph cluster_668484054{
style=invis
668484054 [label="_ghost",style="invis"]
}
}
683982598 -- 169794998 [lhead=cluster_1701437828]
subgraph cluster_1701437828
{
label="main()'s body"
compound="true"
splines="line"
color="darkviolet"
style=""
{rank=same;1770336543;994396663;2090977501;264988145;1262509036;180969710;1565740777;2008630079;169794998;1946675929;758091207;972357851;219263170;13471545;1383866886;550428058;1532772105;}
1770336543 -- 994396663 [style=invis];994396663 -- 2090977501 [style=invis];2090977501 -- 264988145 [style=invis];264988145 -- 1262509036 [style=invis];1262509036 -- 180969710 [style=invis];180969710 -- 1565740777 [style=invis];1565740777 -- 2008630079 [style=invis];2008630079 -- 169794998 [style=invis];169794998 -- 1946675929 [style=invis];1946675929 -- 758091207 [style=invis];758091207 -- 972357851 [style=invis];972357851 -- 219263170 [style=invis];219263170 -- 13471545 [style=invis];13471545 -- 1383866886 [style=invis];1383866886 -- 550428058 [style=invis];550428058 -- 1532772105 [style=invis];
subgraph cluster_1770336543{
style=invis
1770336543 [label="=",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1255988446;1486507340;}
1255988446 -- 1486507340 [style=invis];
1770336543 -- 1255988446
subgraph cluster_1255988446{
style=invis
1255988446 [label="arr",color="grey",tooltip="name"]
}
1770336543 -- 1486507340
subgraph cluster_1486507340{
style=invis
1486507340 [label="Tuple with\n8 elements",color="",tooltip="List of values"]
{rank=same;1757781708;400155988;1099595582;1839181290;2089830869;2037170859;1854265828;607997980;}
1757781708 -- 400155988 [style=invis];400155988 -- 1099595582 [style=invis];1099595582 -- 1839181290 [style=invis];1839181290 -- 2089830869 [style=invis];2089830869 -- 2037170859 [style=invis];2037170859 -- 1854265828 [style=invis];1854265828 -- 607997980 [style=invis];
1486507340 -- 1757781708
subgraph cluster_1757781708{
style=invis
1757781708 [label="36",color="",tooltip="Double"]
}
1486507340 -- 400155988
subgraph cluster_400155988{
style=invis
400155988 [label="func call",color="tomato",tooltip="call to a function"]
{rank=same;397671440;}
400155988 -- 397671440
subgraph cluster_397671440{
style=invis
397671440 [label="function"]
{rank=same;1825578505;}
397671440 -- 1825578505
subgraph cluster_1825578505{
style=invis
1825578505 [label=".",color="dodgerblue",tooltip="OperationNode"]
{rank=same;147178424;2039450744;}
147178424 -- 2039450744 [style=invis];
1825578505 -- 147178424
subgraph cluster_147178424{
style=invis
147178424 [label="1.1d",color="",tooltip="Double"]
}
1825578505 -- 2039450744
subgraph cluster_2039450744{
style=invis
2039450744 [label="toString",color="grey",tooltip="name"]
}
}
}
400155988 -- 1824811911 [lhead=cluster_1599006384]
subgraph cluster_1599006384
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;1824811911;}
subgraph cluster_1824811911{
style=invis
1824811911 [label="_ghost",style="invis"]
}
}
}
1486507340 -- 1099595582
subgraph cluster_1099595582{
style=invis
1099595582 [label="215",color="",tooltip="Double"]
}
1486507340 -- 1839181290
subgraph cluster_1839181290{
style=invis
1839181290 [label="'he'",color="orange",tooltip="StringNode"]
}
1486507340 -- 2089830869
subgraph cluster_2089830869{
style=invis
2089830869 [label="true",color="teal",tooltip="bool literal"]
}
1486507340 -- 2037170859
subgraph cluster_2037170859{
style=invis
2037170859 [label="Tuple with\n2 elements",color="",tooltip="List of values"]
{rank=same;1749640654;899780045;}
1749640654 -- 899780045 [style=invis];
2037170859 -- 1749640654
subgraph cluster_1749640654{
style=invis
1749640654 [label=".546e+20",color="",tooltip="Double"]
}
2037170859 -- 899780045
subgraph cluster_899780045{
style=invis
899780045 [label="486513UL",color="",tooltip="Double"]
}
}
1486507340 -- 1854265828
subgraph cluster_1854265828{
style=invis
1854265828 [label="aur",color="grey",tooltip="name"]
}
1486507340 -- 607997980
subgraph cluster_607997980{
style=invis
607997980 [label="obj creation",color="indigo",tooltip="object creation/ctor call"]
{rank=same;891369626;}
607997980 -- 891369626
subgraph cluster_891369626{
style=invis
891369626 [label="String",color="",tooltip="class name"]
}
607997980 -- 24755138 [lhead=cluster_187670587]
subgraph cluster_187670587
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;24755138;}
subgraph cluster_24755138{
style=invis
24755138 [label="_ghost",style="invis"]
}
}
}
}
}
subgraph cluster_994396663{
style=invis
994396663 [label="arr.add(...)",color="tomato",tooltip="call to a function"]
{rank=same;}
994396663 -- 389295634 [lhead=cluster_1681638342]
subgraph cluster_1681638342
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;1055311308;389295634;}
1055311308 -- 389295634 [style=invis];
subgraph cluster_1055311308{
style=invis
1055311308 [label="Empty tuple",color="",tooltip="List of values"]
}
subgraph cluster_389295634{
style=invis
389295634 [label="arr",color="grey",tooltip="name"]
}
}
}
subgraph cluster_2090977501{
style=invis
2090977501 [label="print",color="",tooltip="PrintNode"]
{rank=same;1756351314;}
2090977501 -- 1756351314
subgraph cluster_1756351314{
style=invis
1756351314 [label="hello {} ! Today will be {}",color="darkorange",tooltip="Complex string literal"]
{rank=same;}
1756351314 -- 1862885742 [lhead=cluster_1815552603]
subgraph cluster_1815552603
{
label="code sections"
compound="true"
splines="line"
color="darkorange"
style=""
{rank=same;1547832990;1862885742;}
1547832990 -- 1862885742 [style=invis];
subgraph cluster_1547832990{
style=invis
1547832990 [label="'benjamin'",color="orange",tooltip="StringNode"]
}
subgraph cluster_1862885742{
style=invis
1862885742 [label="GetWeather(...)",color="tomato",tooltip="call to a function"]
{rank=same;}
1862885742 -- 272572611 [lhead=cluster_1264472532]
subgraph cluster_1264472532
{
label="args"
compound="true"
splines="line"
color=""
style=""
{rank=same;272572611;}
subgraph cluster_272572611{
style=invis
272572611 [label="*",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1415956890;753149211;}
1415956890 -- 753149211 [style=invis];
272572611 -- 1415956890
subgraph cluster_1415956890{
style=invis
1415956890 [label="pressure",color="grey",tooltip="name"]
}
272572611 -- 753149211
subgraph cluster_753149211{
style=invis
753149211 [label="^",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1565630775;1544618436;}
1565630775 -- 1544618436 [style=invis];
753149211 -- 1565630775
subgraph cluster_1565630775{
style=invis
1565630775 [label="10.644",color="",tooltip="Double"]
}
753149211 -- 1544618436
subgraph cluster_1544618436{
style=invis
1544618436 [label="-",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1219181064;1802568473;}
1219181064 -- 1802568473 [style=invis];
1544618436 -- 1219181064
subgraph cluster_1219181064{
style=invis
1219181064 [label="temperature",color="grey",tooltip="name"]
}
1544618436 -- 1802568473
subgraph cluster_1802568473{
style=invis
1802568473 [label="2048",color="",tooltip="Double"]
}
}
}
}
}
}
}
}
}
subgraph cluster_264988145{
style=invis
264988145 [label="print",color="",tooltip="PrintNode"]
{rank=same;1529021079;}
264988145 -- 1529021079
subgraph cluster_1529021079{
style=invis
1529021079 [label="+",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1112260534;905931906;}
1112260534 -- 905931906 [style=invis];
1529021079 -- 1112260534
subgraph cluster_1112260534{
style=invis
1112260534 [label="'Fun fact: In lotus, you can easily mix expression and strings! '",color="orange",tooltip="StringNode"]
}
1529021079 -- 905931906
subgraph cluster_905931906{
style=invis
905931906 [label="For example, you can write: $'It's currently {time.now}' and it will replace time.now with {}",color="darkorange",tooltip="Complex string literal"]
{rank=same;}
905931906 -- 773030880 [lhead=cluster_1179938792]
subgraph cluster_1179938792
{
label="code sections"
compound="true"
splines="line"
color="darkorange"
style=""
{rank=same;773030880;}
subgraph cluster_773030880{
style=invis
773030880 [label="time.now",color="grey",tooltip="name"]
}
}
}
}
}
subgraph cluster_1262509036{
style=invis
1262509036 [label="print",color="",tooltip="PrintNode"]
{rank=same;1103629093;}
1262509036 -- 1103629093
subgraph cluster_1103629093{
style=invis
1103629093 [label="==",color="dodgerblue",tooltip="OperationNode"]
{rank=same;1049850740;1359872154;}
1049850740 -- 1359872154 [style=invis];
1103629093 -- 1049850740
subgraph cluster_1049850740{
style=invis
1049850740 [label="[",color="dodgerblue",tooltip="OperationNode"]
{rank=same;335694649;1896735231;}
335694649 -- 1896735231 [style=invis];
1049850740 -- 335694649
subgraph cluster_335694649{
style=invis
335694649 [label="[",color="dodgerblue",tooltip="OperationNode"]
{rank=same;2048748905;1059164844;}
2048748905 -- 1059164844 [style=invis];
335694649 -- 2048748905
subgraph cluster_2048748905{
style=invis
2048748905 [label="arr",color="grey",tooltip="name"]
}
335694649 -- 1059164844
subgraph cluster_1059164844{
style=invis
1059164844 [label="1",color="",tooltip="Double"]
}
}
1049850740 -- 1896735231
subgraph cluster_1896735231{
style=invis
1896735231 [label="0",color="",tooltip="Double"]
}
}
1103629093 -- 1359872154
subgraph cluster_1359872154{
style=invis
1359872154 [label="1",color="lightorange",tooltip="char literal"]
}
}
}
subgraph cluster_180969710{
style=invis
180969710 [label="print",color="",tooltip="PrintNode"]
{rank=same;1343215003;}
180969710 -- 1343215003
subgraph cluster_1343215003{
style=invis
1343215003 [label="func call",color="tomato",tooltip="call to a function"]
{rank=same;1244985157;}
1343215003 -- 1244985157
subgraph cluster_1244985157{
style=invis
1244985157 [label="function"]
{rank=same;595847308;}
1244985157 -- 595847308
subgraph cluster_595847308{
style=invis
595847308 [label=".",color="dodgerblue",tooltip="OperationNode"]