-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.txt
14901 lines (14901 loc) · 748 KB
/
build.txt
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
Building... Classpath: /mnt/dat/i/prj/haxe/published/stx_makro_di/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_show/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_makro/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_proxy/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_asys/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_config/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_parse/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_om/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_coroutine/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_stream/src/main/haxe/;/mnt/dat/i/prj/haxe/published/fletcher/src/main/haxe/;/mnt/dat/i/prj/haxe/published/pml/src/main/haxe/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/equals/src/;/mnt/dat/i/prj/haxe/published/stx_test/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_pkg/src/main/haxe/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/polygonal-printf/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/hre/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/haxe-strings/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/haxe-concurrent/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/haxe-files/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/console.hx/;/mnt/dat/i/prj/haxe/published/bake/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_log/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_fp/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_fn/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_assert/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_ds/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_fail/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_nano/src/main/haxe/;/mnt/dat/i/prj/haxe/published/stx_pico/src/main/haxe/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/tink_macro/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/tink_core/src/;/mnt/dat/i/prj/haxe/published/ballz/haxe_modules/tink_priority/src/;src/test/haxe/;src/main/haxe/;;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/lib/haxe/extraLibs/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/share/haxe/extraLibs/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/extraLibs/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/lib/haxe/std/eval/_std/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/share/haxe/std/eval/_std/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/lib/haxe/std/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/share/haxe/std/;/mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/
Defines: bake=0.1.1;console.hx=0.2.15;dce=std;equals=1.0.2;eval;fletcher=0.2.0;haxe=4.3.0;haxe3;haxe4;haxe_concurrent=5.1.1;haxe_files=4.0.2;haxe_strings=7.0.2;haxe_ver=4.300;hre=0.2.0;interp;no_deprecation_warnings;pml=0.4.0;polygonal_printf=1.0.2-beta;source_header=Generated by Haxe 4.3.0;stx_assert=0.2.0;stx_asys=0.1.0;stx_config=0.1.0;stx_coroutine=0.3.0;stx_ds=0.2.1;stx_fail=0.2.0;stx_fn=1.1.0;stx_fp=0.3.0;stx_log=0.1.6;stx_makro=0.0.1;stx_makro_di=0.0.1;stx_nano=0.2.0;stx_om=0.3.0;stx_parse=0.3.0;stx_pico=2.0.2;stx_pkg=0.1.0;stx_proxy=0.1.0;stx_show=0.1.0;stx_stream=0.1.1;stx_test=0.1.0;sys;target.name=eval;target.sys;target.threaded;target.unicode;tink_core=2.1.1;tink_macro=1.0.1;tink_priority=0.1.4;true
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StdTypes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/String.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Array.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/ArrayKeyValueIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/EnumTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/Exception.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StdTypes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/String.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Array.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/ArrayKeyValueIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/EnumTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/Exception.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/Expr.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/Type.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Map.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/Map.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/StringMap.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/IntMap.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/ObjectMap.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/EnumValueMap.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Constraints.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/Plugin.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/import.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Lambda.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/List.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/Option.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Path.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/Util.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/Env.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/io/Bytes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/Printer.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StringTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/StringIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/StringKeyValueIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/Context.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/DisplayMode.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/io/BytesData.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int64.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Encoding.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int32.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/EnumValue.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/BalancedTree.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/CallStack.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Any.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/StringBuf.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Enum.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/ArrayIterator.hx
Typing macro haxe.ds.BalancedTree.clear
Typing macro haxe.ds.BalancedTree.exists
Typing macro haxe.ds.BalancedTree.compare
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Reflect.hx
Typing macro haxe.ds.BalancedTree.get
Typing macro haxe.ds.BalancedTree.iterator
Typing macro haxe.ds.BalancedTree.iteratorLoop
Typing macro Array.iterator
Typing macro haxe.iterators.ArrayIterator.new
Typing macro haxe.iterators.ArrayIterator.hasNext
Typing macro haxe.iterators.ArrayIterator.current
Typing macro haxe.iterators.ArrayIterator.next
Typing macro haxe.ds.BalancedTree.keyValueIterator
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/MapKeyValueIterator.hx
Typing macro haxe.iterators.MapKeyValueIterator.new
Typing macro haxe.iterators.MapKeyValueIterator.hasNext
Typing macro haxe.iterators.MapKeyValueIterator.next
Typing macro haxe.ds.BalancedTree.keys
Typing macro haxe.ds.BalancedTree.keysLoop
Typing macro haxe.ds.BalancedTree.remove
Typing macro haxe.ds.BalancedTree.removeLoop
Typing macro haxe.ds.BalancedTree.merge
Typing macro haxe.ds.BalancedTree.minBinding
Typing macro haxe.ds.BalancedTree.balance
Typing macro haxe.ds.TreeNode.get_height
Typing macro haxe.ds.TreeNode.new
Typing macro haxe.ds.BalancedTree.removeMinBinding
Typing macro haxe.ds.BalancedTree.set
Typing macro haxe.ds.BalancedTree.setLoop
Typing macro haxe.ds.BalancedTree.toString
Typing macro haxe.ds.TreeNode.toString
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Std.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Class.hx
Typing macro haxe.iterators.ArrayKeyValueIterator.current
Typing macro haxe.iterators.ArrayKeyValueIterator.new
Typing macro haxe.iterators.ArrayKeyValueIterator.hasNext
Typing macro haxe.iterators.ArrayKeyValueIterator.next
Typing macro Array.keyValueIterator
Typing macro Array.map
Typing macro Array.filter
Typing macro haxe.EnumTools.getName
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Type.hx
Typing macro haxe.EnumTools.createByName
Typing macro haxe.EnumTools.createByIndex
Typing macro haxe.EnumTools.createAll
Typing macro haxe.EnumTools.getConstructors
Typing macro haxe.EnumValueTools.equals
Typing macro haxe.EnumValueTools.getName
Typing macro haxe.EnumValueTools.getParameters
Typing macro haxe.EnumValueTools.getIndex
Typing macro haxe._CallStack.CallStack_Impl_.get_length
Typing macro haxe._CallStack.CallStack_Impl_.callStack
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/NativeStackTrace.hx
Typing macro haxe.NativeStackTrace.toHaxe
Typing macro haxe.NativeStackTrace.callStack
Typing macro haxe.NativeStackTrace._callStack
Typing macro haxe.NativeStackTrace.saveStack
Typing macro haxe.NativeStackTrace.exceptionStack
Typing macro haxe._CallStack.CallStack_Impl_.exceptionStack
Typing macro haxe._CallStack.CallStack_Impl_.subtract
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/IntIterator.hx
Typing macro haxe._CallStack.CallStack_Impl_.equalItems
Typing macro haxe._CallStack.CallStack_Impl_.get
Typing macro haxe._CallStack.CallStack_Impl_.asArray
Typing macro IntIterator.new
Typing macro IntIterator.hasNext
Typing macro IntIterator.next
Typing macro haxe._CallStack.CallStack_Impl_.toString
Typing macro haxe._CallStack.CallStack_Impl_.itemToString
Typing macro haxe._CallStack.CallStack_Impl_.copy
Typing macro haxe._CallStack.CallStack_Impl_.exceptionToString
Typing macro haxe.Exception.get_previous
Typing macro haxe.Exception.toString
Typing macro haxe.Exception.get_message
Typing macro haxe.Exception.get_stack
Typing macro haxe.Exception.__skipStack
Typing macro _Any.Any_Impl_.__promote
Typing macro _Any.Any_Impl_.toString
Typing macro haxe.macro.Error.new
Typing macro haxe.Exception.new
Typing macro haxe.Exception.caught
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ValueException.hx
Typing macro haxe.ValueException.new
Typing macro haxe.ValueException.unwrap
Typing macro haxe.Exception.unwrap
Typing macro haxe.Exception.thrown
Typing macro haxe.Exception.get_native
Typing macro haxe.Exception.__shiftStack
Typing macro haxe.Exception.details
Typing macro haxe.ds.StringMap.keyValueIterator
Typing macro haxe.ds.IntMap.keyValueIterator
Typing macro haxe.ds.ObjectMap.keyValueIterator
Typing macro haxe.ds.EnumValueMap.compare
Typing macro haxe.ds.EnumValueMap.compareArgs
Typing macro haxe.ds.EnumValueMap.compareArg
Typing macro haxe.ds.EnumValueMap.copy
Typing macro haxe.ds.BalancedTree.new
Typing macro haxe.ds.BalancedTree.copy
Typing macro _EnumValue.EnumValue_Impl_.match
Typing macro haxe.ds._Map.Map_Impl_.set
Typing macro haxe.ds._Map.Map_Impl_.get
Typing macro haxe.ds._Map.Map_Impl_.exists
Typing macro haxe.ds._Map.Map_Impl_.remove
Typing macro haxe.ds._Map.Map_Impl_.keys
Typing macro haxe.ds._Map.Map_Impl_.iterator
Typing macro haxe.ds._Map.Map_Impl_.keyValueIterator
Typing macro haxe.ds._Map.Map_Impl_.copy
Typing macro haxe.ds._Map.Map_Impl_.toString
Typing macro haxe.ds._Map.Map_Impl_.clear
Typing macro haxe.ds._Map.Map_Impl_.arrayWrite
Typing macro haxe.ds._Map.Map_Impl_.toStringMap
Typing macro haxe.ds._Map.Map_Impl_.toIntMap
Typing macro haxe.ds._Map.Map_Impl_.toEnumValueMapMap
Typing macro haxe.ds._Map.Map_Impl_.toObjectMap
Typing macro haxe.ds._Map.Map_Impl_.fromStringMap
Typing macro haxe.ds._Map.Map_Impl_.fromIntMap
Typing macro haxe.ds._Map.Map_Impl_.fromObjectMap
Typing macro haxe.ds.List.new
Typing macro haxe.ds.List.add
Typing macro haxe.ds._List.ListNode.create
Typing macro haxe.ds._List.ListNode.new
Typing macro haxe.ds.List.push
Typing macro haxe.ds.List.first
Typing macro haxe.ds.List.last
Typing macro haxe.ds.List.pop
Typing macro haxe.ds.List.isEmpty
Typing macro haxe.ds.List.clear
Typing macro haxe.ds.List.remove
Typing macro haxe.ds.List.iterator
Typing macro haxe.ds._List.ListIterator.new
Typing macro haxe.ds.List.keyValueIterator
Typing macro haxe.ds._List.ListKeyValueIterator.new
Typing macro haxe.ds.List.toString
Typing macro haxe.ds.List.join
Typing macro haxe.ds.List.filter
Typing macro haxe.ds.List.map
Typing macro haxe.ds._List.ListIterator.hasNext
Typing macro haxe.ds._List.ListIterator.next
Typing macro haxe.ds._List.ListKeyValueIterator.hasNext
Typing macro haxe.ds._List.ListKeyValueIterator.next
Typing macro Lambda.array
Typing macro Lambda.list
Typing macro Lambda.map
Typing macro Lambda.mapi
Typing macro Lambda.flatten
Typing macro Lambda.flatMap
Typing macro Lambda.has
Typing macro Lambda.exists
Typing macro Lambda.foreach
Typing macro Lambda.iter
Typing macro Lambda.filter
Typing macro Lambda.fold
Typing macro Lambda.foldi
Typing macro Lambda.count
Typing macro Lambda.empty
Typing macro Lambda.indexOf
Typing macro Lambda.find
Typing macro Lambda.findIndex
Typing macro Lambda.concat
Typing macro haxe.io.Path.new
Typing macro haxe.io.Path.toString
Typing macro haxe.io.Path.withoutExtension
Typing macro haxe.io.Path.withoutDirectory
Typing macro haxe.io.Path.directory
Typing macro haxe.io.Path.extension
Typing macro haxe.io.Path.withExtension
Typing macro haxe.io.Path.join
Typing macro haxe.io.Path.addTrailingSlash
Typing macro haxe.io.Path.normalize
Typing macro StringTools.fastCodeAt
Typing macro haxe.io.Path.removeTrailingSlashes
Typing macro haxe.io.Path.isAbsolute
Typing macro StringTools.startsWith
Typing macro haxe.io.Path.unescape
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/EReg.hx
Typing macro haxe.io.Path.escape
Typing macro bake.Util.option
Typing macro bake.Util.env
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/Sys.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/SysTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/ds/ReadOnlyArray.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Input.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Output.hx
Typing macro haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_.get_length
Typing macro haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_.get
Typing macro haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_.concat
Typing macro haxe.SysTools.winMetaCharacters
Typing macro haxe.SysTools.quoteUnixArg
Typing macro StringTools.replace
Typing macro haxe.SysTools.quoteWinArg
Typing macro haxe.io.Input.readByte
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/exceptions/NotImplementedException.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/exceptions/PosException.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/PosInfos.hx
Typing macro haxe.exceptions.NotImplementedException.new
Typing macro haxe.exceptions.PosException.new
Typing macro haxe.exceptions.PosException.toString
Typing macro haxe.io.Input.readBytes
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Error.hx
Typing macro haxe.io._BytesData.NativeBytesDataAbstract_Impl_.get
Typing macro haxe.io._BytesData.NativeBytesDataAbstract_Impl_.set
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Eof.hx
Typing macro haxe.io.Eof.new
Typing macro haxe.io.Eof.toString
Typing macro haxe.io.Input.close
Typing macro haxe.io.Input.set_bigEndian
Typing macro haxe.io.Input.readAll
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/io/BytesBuffer.hx
Typing macro haxe.io.Input.readFullBytes
Typing macro haxe.io.Input.read
Typing macro haxe.io.Input.readUntil
Typing macro haxe.io.Input.readLine
Typing macro haxe.io.Input.readFloat
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/FPHelper.hx
Typing macro haxe.io.FPHelper.i32ToFloat
Typing macro haxe.io.FPHelper._i32ToFloat
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Math.hx
Typing macro haxe.io.Input.readInt32
Typing macro haxe.io.FPHelper.i64tmp
Typing macro haxe._Int64.Int64_Impl_.ofInt
Typing macro haxe._Int64.Int64_Impl_.make
Typing macro haxe._Int64.Int64_Impl_._new
Typing macro haxe._Int64.___Int64.new
Typing macro haxe.io.FPHelper.LN2
Typing macro haxe.io.FPHelper._i64ToDouble
Typing macro haxe.io.FPHelper._floatToI32
Typing macro haxe.io.FPHelper._doubleToI64
Typing macro haxe._Int64.Int64_Impl_.set_low
Typing macro haxe._Int64.Int64_Impl_.set_high
Typing macro haxe.io.FPHelper.floatToI32
Typing macro haxe.io.FPHelper.i64ToDouble
Typing macro haxe.io.FPHelper.doubleToI64
Typing macro haxe.io.Input.readDouble
Typing macro haxe.io.Input.readInt8
Typing macro haxe.io.Input.readInt16
Typing macro haxe.io.Input.readUInt16
Typing macro haxe.io.Input.readInt24
Typing macro haxe.io.Input.readUInt24
Typing macro haxe.io.Input.readString
Typing macro haxe.io.Output.writeByte
Typing macro haxe.io.Output.writeBytes
Typing macro haxe.io.Output.flush
Typing macro haxe.io.Output.close
Typing macro haxe.io.Output.set_bigEndian
Typing macro haxe.io.Output.write
Typing macro haxe.io.Output.writeFullBytes
Typing macro haxe.io.Output.writeFloat
Typing macro haxe.io.Output.writeInt32
Typing macro haxe.io.Output.writeDouble
Typing macro haxe._Int64.Int64_Impl_.get_high
Typing macro haxe._Int64.Int64_Impl_.get_low
Typing macro haxe.io.Output.writeInt8
Typing macro haxe.io.Output.writeInt16
Typing macro haxe.io.Output.writeUInt16
Typing macro haxe.io.Output.writeInt24
Typing macro haxe.io.Output.writeUInt24
Typing macro haxe.io.Output.prepare
Typing macro haxe.io.Output.writeInput
Typing macro haxe.io.Output.writeString
Typing macro Sys.command
Typing macro Sys.executablePath
Typing macro Sys.__init__
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/sys/io/FileOutput.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/io/FileSeek.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/sys/io/FileInput.hx
Typing macro bake.Util.uuid
Typing macro StringTools.hex
Typing macro bake.OptionUtil.is_defined
Typing macro bake.OptionUtil.zip_with
Typing macro bake.OptionUtil.flat_map
Typing macro bake.OptionUtil.fold
Typing macro bake.OptionUtil.fudge
Typing macro bake.OptionUtil.map
Typing macro bake.BoolUtil.if_else
Typing macro bake.IdentUtil.toIdentifier
Typing macro bake.ArrayUtil.index_of
Typing macro bake.ArrayUtil.any
Typing macro bake.ArrayUtil.search
Typing macro bake.TargetUtil.uses_file
Typing macro bake.Env.new
Typing macro bake.Env.is_windows
Typing macro bake.Env.home
Typing macro haxe._Int64.Int64_Impl_.copy
Typing macro haxe._Int64.Int64_Impl_.toInt
Typing macro haxe._Int64.Int64_Impl_.is
Typing macro haxe._Int64.Int64_Impl_.isInt64
Typing macro haxe._Int64.Int64_Impl_.getHigh
Typing macro haxe._Int64.Int64_Impl_.getLow
Typing macro haxe._Int64.Int64_Impl_.isNeg
Typing macro haxe._Int64.Int64_Impl_.isZero
Typing macro haxe._Int64.Int64_Impl_.eq
Typing macro haxe._Int64.Int64_Impl_.compare
Typing macro haxe._Int32.Int32_Impl_.sub
Typing macro haxe._Int32.Int32_Impl_.clamp
Typing macro haxe._Int32.Int32_Impl_.ucompare
Typing macro haxe._Int64.Int64_Impl_.ucompare
Typing macro haxe._Int64.Int64_Impl_.toStr
Typing macro haxe._Int64.Int64_Impl_.toString
Typing macro haxe._Int64.Int64_Impl_.neq
Typing macro haxe._Int64.Int64_Impl_.divMod
Typing macro haxe._Int64.Int64_Impl_.neg
Typing macro haxe._Int32.Int32_Impl_.negate
Typing macro haxe._Int32.Int32_Impl_.postIncrement
Typing macro haxe._Int64.Int64_Impl_.shl
Typing macro haxe._Int64.Int64_Impl_.or
Typing macro haxe._Int64.Int64_Impl_.sub
Typing macro haxe._Int32.Int32_Impl_.postDecrement
Typing macro haxe._Int64.Int64_Impl_.ushr
Typing macro haxe._Int32.Int32_Impl_.add
Typing macro haxe._Int32.Int32_Impl_.addInt
Typing macro haxe._Int32.Int32_Impl_.toFloat
Typing macro haxe._Int64.Int64_Impl_.parseString
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int64Helper.hx
Typing macro haxe.Int64Helper.parseString
Typing macro StringTools.trim
Typing macro StringTools.ltrim
Typing macro StringTools.isSpace
Typing macro StringTools.rtrim
Typing macro haxe._Int64.Int64_Impl_.mul
Typing macro haxe._Int64.Int64_Impl_.add
Typing macro haxe.Int64Helper.fromFloat
Typing macro haxe._Int64.Int64_Impl_.fromFloat
Typing macro haxe._Int64.Int64_Impl_.preIncrement
Typing macro haxe._Int64.Int64_Impl_.postIncrement
Typing macro haxe._Int64.Int64_Impl_.preDecrement
Typing macro haxe._Int64.Int64_Impl_.postDecrement
Typing macro haxe._Int64.Int64_Impl_.addInt
Typing macro haxe._Int64.Int64_Impl_.subInt
Typing macro haxe._Int64.Int64_Impl_.intSub
Typing macro haxe._Int64.Int64_Impl_.mulInt
Typing macro haxe._Int64.Int64_Impl_.div
Typing macro haxe._Int64.Int64_Impl_.divInt
Typing macro haxe._Int64.Int64_Impl_.intDiv
Typing macro haxe._Int64.Int64_Impl_.mod
Typing macro haxe._Int64.Int64_Impl_.modInt
Typing macro haxe._Int64.Int64_Impl_.intMod
Typing macro haxe._Int64.Int64_Impl_.eqInt
Typing macro haxe._Int64.Int64_Impl_.neqInt
Typing macro haxe._Int64.Int64_Impl_.lt
Typing macro haxe._Int64.Int64_Impl_.ltInt
Typing macro haxe._Int64.Int64_Impl_.intLt
Typing macro haxe._Int64.Int64_Impl_.lte
Typing macro haxe._Int64.Int64_Impl_.lteInt
Typing macro haxe._Int64.Int64_Impl_.intLte
Typing macro haxe._Int64.Int64_Impl_.gt
Typing macro haxe._Int64.Int64_Impl_.gtInt
Typing macro haxe._Int64.Int64_Impl_.intGt
Typing macro haxe._Int64.Int64_Impl_.gte
Typing macro haxe._Int64.Int64_Impl_.gteInt
Typing macro haxe._Int64.Int64_Impl_.intGte
Typing macro haxe._Int64.Int64_Impl_.complement
Typing macro haxe._Int64.Int64_Impl_.and
Typing macro haxe._Int64.Int64_Impl_.xor
Typing macro haxe._Int64.Int64_Impl_.shr
Typing macro haxe._Int32.Int32_Impl_.preIncrement
Typing macro haxe._Int32.Int32_Impl_.preDecrement
Typing macro haxe._Int32.Int32_Impl_.subInt
Typing macro haxe._Int32.Int32_Impl_.intSub
Typing macro haxe._Int64.___Int64.toString
Typing macro haxe.io.Bytes.__init__
Typing macro haxe.iterators.StringIterator.offset
Typing macro haxe.iterators.StringIterator.new
Typing macro haxe.iterators.StringIterator.hasNext
Typing macro haxe.iterators.StringIterator.next
Typing macro StringTools.unsafeCodeAt
Typing macro haxe.iterators.StringKeyValueIterator.offset
Typing macro haxe.iterators.StringKeyValueIterator.new
Typing macro haxe.iterators.StringKeyValueIterator.hasNext
Typing macro haxe.iterators.StringKeyValueIterator.next
Typing macro StringTools.urlEncode
Typing macro StringTools.urlDecode
Typing macro StringTools.htmlEscape
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/StringIteratorUnicode.hx
Typing macro haxe.iterators.StringIteratorUnicode.new
Typing macro haxe.iterators.StringIteratorUnicode.hasNext
Typing macro haxe.iterators.StringIteratorUnicode.offset
Typing macro haxe.iterators.StringIteratorUnicode.next
Typing macro haxe.iterators.StringIteratorUnicode.unicodeIterator
Typing macro StringTools.htmlUnescape
Typing macro StringTools.contains
Typing macro StringTools.endsWith
Typing macro StringTools.lpad
Typing macro StringTools.rpad
Typing macro StringTools.iterator
Typing macro StringTools.keyValueIterator
Typing macro StringTools.isEof
Typing macro StringTools.quoteUnixArg
Typing macro StringTools.winMetaCharacters
Typing macro StringTools.quoteWinArg
Typing macro haxe.macro.Printer.new
Typing macro haxe.macro.Printer.printUnop
Typing macro haxe.macro.Printer.printBinop
Typing macro haxe.macro.Printer.escapeString
Typing macro haxe.macro.Printer.printFormatString
Typing macro haxe.macro.Printer.printString
Typing macro haxe.macro.Printer.printConstant
Typing macro haxe.macro.Printer.opt
Typing macro haxe.macro.Printer.printTypeParam
Typing macro haxe.macro.Printer.printComplexType
Typing macro haxe.macro.Printer.printTypePath
Typing macro haxe.macro.Printer.printField
Typing macro haxe.macro.Printer.printMetadata
Typing macro haxe.macro.Printer.printExprs
Typing macro haxe.macro.Printer.printExpr
Typing macro haxe.macro.Printer.printObjectField
Typing macro haxe.macro.Printer.printObjectFieldKey
Typing macro haxe.macro.Printer.printFunction
Typing macro haxe.macro.Printer.printTypeParamDecl
Typing macro haxe.macro.Printer.printFunctionArg
Typing macro haxe.macro.Printer.printVar
Typing macro haxe.macro.Printer.printAccess
Typing macro haxe.macro.Printer.printExtension
Typing macro haxe.macro.Printer.printStructure
Typing macro haxe.macro.Printer.printTypeDefinition
Typing macro haxe.macro.Printer.printFieldWithDelimiter
Typing macro haxe.macro.Printer.printExprWithPositions
Typing macro haxe.macro.Context.getPosInfos
Typing macro haxe.macro.Context.load
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/vm/Context.hx
Typing macro haxe.macro.Context.error
Typing macro haxe.macro.Context.fatalError
Typing macro haxe.macro.Context.reportError
Typing macro haxe.macro.Context.warning
Typing macro haxe.macro.Context.info
Typing macro haxe.macro.Context.getMessages
Typing macro haxe.macro.Context.filterMessages
Typing macro haxe.macro.Context.initMacrosDone
Typing macro haxe.macro.Context.resolvePath
Typing macro haxe.macro.Context.getClassPath
Typing macro haxe.macro.Context.containsDisplayPosition
Typing macro haxe.macro.Context.getDisplayMode
Typing macro haxe.macro.Context.currentPos
Typing macro haxe.macro.Context.getMacroStack
Typing macro haxe.macro.Context.getExpectedType
Typing macro haxe.macro.Context.assertInitMacrosDone
Typing macro haxe.macro.Context.getCallArguments
Typing macro haxe.macro.Context.getLocalClass
Typing macro haxe.macro.Context.getLocalModule
Typing macro haxe.macro.Context.getLocalType
Typing macro haxe.macro.Context.getLocalMethod
Typing macro haxe.macro.Context.getLocalUsing
Typing macro haxe.macro.Context.getLocalImports
Typing macro haxe.macro.Context.getLocalVars
Typing macro haxe.macro.Context.getLocalTVars
Typing macro haxe.macro.Context.defined
Typing macro haxe.macro.Context.definedValue
Typing macro haxe.macro.Context.getDefines
Typing macro haxe.macro.Context.getType
Typing macro haxe.macro.Context.getModule
Typing macro haxe.macro.Context.getMainExpr
Typing macro haxe.macro.Context.getAllModuleTypes
Typing macro haxe.macro.Context.parse
Typing macro haxe.macro.Context.parseInlineString
Typing macro haxe.macro.Context.makeExpr
Typing macro haxe.macro.Context.signature
Typing macro haxe.macro.Context.onGenerate
Typing macro haxe.macro.Context.onAfterGenerate
Typing macro haxe.macro.Context.onAfterTyping
Typing macro haxe.macro.Context.onAfterInitMacros
Typing macro haxe.macro.Context.assertInitMacro
Typing macro haxe.macro.Context.onTypeNotFound
Typing macro haxe.macro.Context.typeof
Typing macro haxe.macro.Context.typeExpr
Typing macro haxe.macro.Context.resolveType
Typing macro haxe.macro.Context.toComplexType
Typing macro haxe.macro.Context.unify
Typing macro haxe.macro.Context.follow
Typing macro haxe.macro.Context.followWithAbstracts
Typing macro haxe.macro.Context.makePosition
Typing macro haxe.macro.Context.getResources
Typing macro haxe.macro.Context.addResource
Typing macro haxe.macro.Context.getBuildFields
Typing macro haxe.macro.Context.defineType
Typing macro haxe.macro.Context.makeMonomorph
Typing macro haxe.macro.Context.defineModule
Typing macro haxe.macro.Context.getTypedExpr
Typing macro haxe.macro.Context.storeTypedExpr
Typing macro haxe.macro.Context.storeExpr
Typing macro haxe.macro.Context.typeAndStoreExpr
Typing macro haxe.macro.Context.registerModuleDependency
Typing macro haxe.macro.Context.timer
Typing macro haxe.macro.Context.withImports
Typing macro haxe.macro.Context.withOptions
Typing macro haxe.macro.Context.registerModuleReuseCall
Typing macro haxe.macro.Context.onMacroContextReused
Typing macro haxe.macro.Context.includeFile
Typing macro haxe.macro.Context.sExpr
Typing macro bake.Plugin.note
Typing macro bake.Plugin.printer
Typing macro bake.Plugin.use
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/Bake.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/Baking.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/Compiler.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/display/Display.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/display/JsonModuleTypes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/display/Position.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/display/FsPath.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/display/Protocol.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/PlatformConfig.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/ExprTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/MacroStringTools.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/Field.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/macro/JSGenApi.hx
Typing macro Bake.is_macro
Typing macro bake.Baking.new
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/haxe/Resource.hx
Typing macro haxe.display._JsonModuleTypes.ImportStatus_Impl_.Imported
Typing macro haxe.display._JsonModuleTypes.ImportStatus_Impl_.Unimported
Typing macro haxe.display._JsonModuleTypes.ImportStatus_Impl_.Shadowed
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AClosed
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AOpened
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AConst
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AExtend
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AClassStatics
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AEnumStatics
Typing macro haxe.display._JsonModuleTypes.JsonAnonStatusKind_Impl_.AAbstractStatics
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TMono
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TInst
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TEnum
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TType
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TAbstract
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TFun
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TAnonymous
Typing macro haxe.display._JsonModuleTypes.JsonTypeKind_Impl_.TDynamic
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpAdd
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpMult
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpDiv
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpSub
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpAssign
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpEq
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpNotEq
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpGt
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpGte
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpLt
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpLte
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpAnd
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpOr
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpXor
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpBoolAnd
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpBoolOr
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpShl
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpShr
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpUShr
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpMod
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpAssignOp
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpInterval
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpArrow
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpIn
Typing macro haxe.display._JsonModuleTypes.JsonBinopKind_Impl_.OpNullCoal
Typing macro haxe.display._JsonModuleTypes.JsonUnop_Impl_.OpIncrement
Typing macro haxe.display._JsonModuleTypes.JsonUnop_Impl_.OpDecrement
Typing macro haxe.display._JsonModuleTypes.JsonUnop_Impl_.OpNot
Typing macro haxe.display._JsonModuleTypes.JsonUnop_Impl_.OpNeg
Typing macro haxe.display._JsonModuleTypes.JsonUnop_Impl_.OpNegBits
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TInt
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TFloat
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TString
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TBool
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TNull
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TThis
Typing macro haxe.display._JsonModuleTypes.JsonTConstantKind_Impl_.TSuper
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccNormal
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccNo
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccNever
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccResolve
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccCall
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccInline
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccRequire
Typing macro haxe.display._JsonModuleTypes.JsonVarAccessKind_Impl_.AccCtor
Typing macro haxe.display._JsonModuleTypes.JsonMethodKind_Impl_.MethNormal
Typing macro haxe.display._JsonModuleTypes.JsonMethodKind_Impl_.MethInline
Typing macro haxe.display._JsonModuleTypes.JsonMethodKind_Impl_.MethDynamic
Typing macro haxe.display._JsonModuleTypes.JsonMethodKind_Impl_.MethMacro
Typing macro haxe.display._JsonModuleTypes.JsonFieldKindKind_Impl_.FVar
Typing macro haxe.display._JsonModuleTypes.JsonFieldKindKind_Impl_.FMethod
Typing macro haxe.display._JsonModuleTypes.JsonClassFieldScope_Impl_.Static
Typing macro haxe.display._JsonModuleTypes.JsonClassFieldScope_Impl_.Member
Typing macro haxe.display._JsonModuleTypes.JsonClassFieldScope_Impl_.Constructor
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KNormal
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KTypeParameter
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KExtension
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KExpr
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KGeneric
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KGenericInstance
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KMacroType
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KAbstractImpl
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KGenericBuild
Typing macro haxe.display._JsonModuleTypes.JsonClassKindKind_Impl_.KModuleFields
Typing macro haxe.display._JsonModuleTypes.JsonModuleTypeKind_Impl_.Class
Typing macro haxe.display._JsonModuleTypes.JsonModuleTypeKind_Impl_.Enum
Typing macro haxe.display._JsonModuleTypes.JsonModuleTypeKind_Impl_.Typedef
Typing macro haxe.display._JsonModuleTypes.JsonModuleTypeKind_Impl_.Abstract
Typing macro haxe.display._FsPath.FsPath_Impl_._new
Typing macro haxe.display._FsPath.FsPath_Impl_.toString
Typing macro haxe.display.Methods.Initialize
Typing macro haxe.display._Protocol.HaxeRequestMethod_Impl_._new
Typing macro haxe.display._Protocol.HaxeNotificationMethod_Impl_._new
Typing macro haxe.display._Protocol.HaxeResponseErrorSeverity_Impl_.Error
Typing macro haxe.display._Protocol.HaxeResponseErrorSeverity_Impl_.Warning
Typing macro haxe.display._Protocol.HaxeResponseErrorSeverity_Impl_.Hint
Typing macro haxe.display.DisplayMethods.Completion
Typing macro haxe.display.DisplayMethods.CompletionItemResolve
Typing macro haxe.display.DisplayMethods.FindReferences
Typing macro haxe.display.DisplayMethods.GotoDefinition
Typing macro haxe.display.DisplayMethods.GotoImplementation
Typing macro haxe.display.DisplayMethods.GotoTypeDefinition
Typing macro haxe.display.DisplayMethods.Hover
Typing macro haxe.display.DisplayMethods.DeterminePackage
Typing macro haxe.display.DisplayMethods.SignatureHelp
Typing macro haxe.display._Display.LocalOrigin_Impl_.LocalVariable
Typing macro haxe.display._Display.LocalOrigin_Impl_.Argument
Typing macro haxe.display._Display.LocalOrigin_Impl_.ForVariable
Typing macro haxe.display._Display.LocalOrigin_Impl_.PatternVariable
Typing macro haxe.display._Display.LocalOrigin_Impl_.CatchVariable
Typing macro haxe.display._Display.LocalOrigin_Impl_.LocalFunction
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.Self
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.StaticImport
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.Parent
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.StaticExtension
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.AnonymousStructure
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.BuiltIn
Typing macro haxe.display._Display.ClassFieldOriginKind_Impl_.Unknown
Typing macro haxe.display._Display.EnumFieldOriginKind_Impl_.Self
Typing macro haxe.display._Display.EnumFieldOriginKind_Impl_.StaticImport
Typing macro haxe.display._Display.Literal_Impl_.Null
Typing macro haxe.display._Display.Literal_Impl_.True
Typing macro haxe.display._Display.Literal_Impl_.False
Typing macro haxe.display._Display.Literal_Impl_.This
Typing macro haxe.display._Display.Literal_Impl_.Trace
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.Class
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.Interface
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.Enum
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.Abstract
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.EnumAbstract
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.TypeAlias
Typing macro haxe.display._Display.DisplayModuleTypeKind_Impl_.Struct
Typing macro haxe.display._Display.MetadataTarget_Impl_.Class
Typing macro haxe.display._Display.MetadataTarget_Impl_.ClassField
Typing macro haxe.display._Display.MetadataTarget_Impl_.Abstract
Typing macro haxe.display._Display.MetadataTarget_Impl_.AbstractField
Typing macro haxe.display._Display.MetadataTarget_Impl_.Enum
Typing macro haxe.display._Display.MetadataTarget_Impl_.Typedef
Typing macro haxe.display._Display.MetadataTarget_Impl_.AnyField
Typing macro haxe.display._Display.MetadataTarget_Impl_.Expr
Typing macro haxe.display._Display.MetadataTarget_Impl_.TypeParameter
Typing macro haxe.display._Display.Platform_Impl_.Cross
Typing macro haxe.display._Display.Platform_Impl_.Js
Typing macro haxe.display._Display.Platform_Impl_.Lua
Typing macro haxe.display._Display.Platform_Impl_.Neko
Typing macro haxe.display._Display.Platform_Impl_.Flash
Typing macro haxe.display._Display.Platform_Impl_.Php
Typing macro haxe.display._Display.Platform_Impl_.Cpp
Typing macro haxe.display._Display.Platform_Impl_.Cs
Typing macro haxe.display._Display.Platform_Impl_.Java
Typing macro haxe.display._Display.Platform_Impl_.Python
Typing macro haxe.display._Display.Platform_Impl_.Hl
Typing macro haxe.display._Display.Platform_Impl_.Eval
Typing macro haxe.display._Display.KeywordKind_Impl_.Implements
Typing macro haxe.display._Display.KeywordKind_Impl_.Extends
Typing macro haxe.display._Display.KeywordKind_Impl_.Function
Typing macro haxe.display._Display.KeywordKind_Impl_.Var
Typing macro haxe.display._Display.KeywordKind_Impl_.If
Typing macro haxe.display._Display.KeywordKind_Impl_.Else
Typing macro haxe.display._Display.KeywordKind_Impl_.While
Typing macro haxe.display._Display.KeywordKind_Impl_.Do
Typing macro haxe.display._Display.KeywordKind_Impl_.For
Typing macro haxe.display._Display.KeywordKind_Impl_.Break
Typing macro haxe.display._Display.KeywordKind_Impl_.Return
Typing macro haxe.display._Display.KeywordKind_Impl_.Continue
Typing macro haxe.display._Display.KeywordKind_Impl_.Switch
Typing macro haxe.display._Display.KeywordKind_Impl_.Case
Typing macro haxe.display._Display.KeywordKind_Impl_.Default
Typing macro haxe.display._Display.KeywordKind_Impl_.Try
Typing macro haxe.display._Display.KeywordKind_Impl_.Catch
Typing macro haxe.display._Display.KeywordKind_Impl_.New
Typing macro haxe.display._Display.KeywordKind_Impl_.Throw
Typing macro haxe.display._Display.KeywordKind_Impl_.Untyped
Typing macro haxe.display._Display.KeywordKind_Impl_.Cast
Typing macro haxe.display._Display.KeywordKind_Impl_.Macro
Typing macro haxe.display._Display.KeywordKind_Impl_.Package
Typing macro haxe.display._Display.KeywordKind_Impl_.Import
Typing macro haxe.display._Display.KeywordKind_Impl_.Using
Typing macro haxe.display._Display.KeywordKind_Impl_.Public
Typing macro haxe.display._Display.KeywordKind_Impl_.Private
Typing macro haxe.display._Display.KeywordKind_Impl_.Static
Typing macro haxe.display._Display.KeywordKind_Impl_.Extern
Typing macro haxe.display._Display.KeywordKind_Impl_.Dynamic
Typing macro haxe.display._Display.KeywordKind_Impl_.Override
Typing macro haxe.display._Display.KeywordKind_Impl_.Overload
Typing macro haxe.display._Display.KeywordKind_Impl_.Class
Typing macro haxe.display._Display.KeywordKind_Impl_.Interface
Typing macro haxe.display._Display.KeywordKind_Impl_.Enum
Typing macro haxe.display._Display.KeywordKind_Impl_.Abstract
Typing macro haxe.display._Display.KeywordKind_Impl_.Typedef
Typing macro haxe.display._Display.KeywordKind_Impl_.Final
Typing macro haxe.display._Display.KeywordKind_Impl_.Inline
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Local
Typing macro haxe.display._Display.DisplayItemKind_Impl_.ClassField
Typing macro haxe.display._Display.DisplayItemKind_Impl_.EnumField
Typing macro haxe.display._Display.DisplayItemKind_Impl_.EnumAbstractField
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Type
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Package
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Module
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Literal
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Metadata
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Keyword
Typing macro haxe.display._Display.DisplayItemKind_Impl_.AnonymousStructure
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Expression
Typing macro haxe.display._Display.DisplayItemKind_Impl_.TypeParameter
Typing macro haxe.display._Display.DisplayItemKind_Impl_.Define
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Field
Typing macro haxe.display._Display.CompletionModeKind_Impl_.StructureField
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Toplevel
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Metadata
Typing macro haxe.display._Display.CompletionModeKind_Impl_.TypeHint
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Extends
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Implements
Typing macro haxe.display._Display.CompletionModeKind_Impl_.StructExtension
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Import
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Using
Typing macro haxe.display._Display.CompletionModeKind_Impl_.New
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Pattern
Typing macro haxe.display._Display.CompletionModeKind_Impl_.Override
Typing macro haxe.display._Display.CompletionModeKind_Impl_.TypeRelation
Typing macro haxe.display._Display.CompletionModeKind_Impl_.TypeDeclaration
Typing macro haxe.display._Display.FindReferencesKind_Impl_.Direct
Typing macro haxe.display._Display.FindReferencesKind_Impl_.WithBaseAndDescendants
Typing macro haxe.display._Display.FindReferencesKind_Impl_.WithDescendants
Typing macro haxe.display._Display.HoverExpectedNameKind_Impl_.FunctionArgument
Typing macro haxe.display._Display.HoverExpectedNameKind_Impl_.StructureField
Typing macro haxe.display._Display.SignatureItemKind_Impl_.Call
Typing macro haxe.display._Display.SignatureItemKind_Impl_.ArrayAccess
Typing macro haxe.macro.Compiler.getDefine
Typing macro haxe.macro.Compiler.ident
Typing macro haxe.macro.Compiler.path
Typing macro haxe.macro.Compiler.allowPackage
Typing macro haxe.macro.Compiler.load
Typing macro haxe.macro.Compiler.define
Typing macro haxe.macro.Compiler.removeField
Typing macro haxe.macro.Compiler.setFieldType
Typing macro haxe.macro.Compiler.addMetadata
Typing macro haxe.macro.Compiler.addClassPath
Typing macro haxe.macro.Compiler.getOutput
Typing macro haxe.macro.Compiler.setOutput
Typing macro haxe.macro.Compiler.getDisplayPos
Typing macro haxe.macro.Compiler.getConfiguration
Typing macro haxe.macro.Compiler.addNativeLib
Typing macro haxe.macro.Compiler.addNativeArg
Typing macro haxe.macro.Compiler.include
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/sys/FileSystem.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/FileStat.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Date.hx
Typing macro sys.FileSystem.absolutePath
Typing macro haxe.macro.Compiler.excludeBaseType
Typing macro haxe.macro.Compiler.exclude
Typing macro haxe.macro.Compiler.excludeFile
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/eval/_std/sys/io/File.hx
Typing macro sys.io.File.copy
Typing macro haxe.macro.Compiler.patchTypes
Typing macro haxe.macro.Compiler.keep
Typing macro haxe.macro.Compiler.addGlobalMetadata
Typing macro haxe.macro.Compiler.nullSafety
Typing macro haxe.macro._Compiler.NullSafetyMode_Impl_.Loose
Typing macro haxe.macro.Compiler.registerMetadataDescriptionFile
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Json.hx
Typing macro haxe.Json.parse
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/format/JsonParser.hx
Typing macro haxe.format.JsonParser.parse
Typing macro haxe.format.JsonParser.new
Typing macro haxe.format.JsonParser.doParse
Typing macro haxe.format.JsonParser.parseRec
Typing macro haxe.format.JsonParser.nextChar
Typing macro haxe.format.JsonParser.invalidChar
Typing macro haxe.format.JsonParser.parseString
Typing macro haxe.format.JsonParser.parseNumber
Typing macro haxe.format.JsonParser.invalidNumber
Typing macro haxe.macro.Compiler.registerCustomMetadata
Typing macro haxe.Json.stringify
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/format/JsonPrinter.hx
Typing macro haxe.format.JsonPrinter.print
Typing macro haxe.format.JsonPrinter.new
Typing macro haxe.format.JsonPrinter.write
Typing macro haxe.format.JsonPrinter.add
Typing macro haxe.format.JsonPrinter.objString
Typing macro haxe.format.JsonPrinter.fieldsString
Typing macro haxe.format.JsonPrinter.addChar
Typing macro haxe.format.JsonPrinter.newl
Typing macro haxe.format.JsonPrinter.ipad
Typing macro haxe.format.JsonPrinter.quote
Typing macro haxe.format.JsonPrinter.classString
Typing macro haxe.macro.Compiler.registerDefinesDescriptionFile
Typing macro haxe.macro.Compiler.registerCustomDefine
Typing macro haxe.macro.Compiler.setCustomJSGenerator
Typing macro haxe.macro.Compiler.flushDiskCache
Typing macro haxe.macro.Compiler.includeFile
Typing macro haxe.macro._Compiler.IncludePosition_Impl_.Top
Typing macro haxe.macro._Compiler.IncludePosition_Impl_.Inline
Typing macro haxe.macro._Compiler.IncludePosition_Impl_.Closure
Typing macro haxe.macro._Compiler.NullSafetyMode_Impl_.Off
Typing macro haxe.macro._Compiler.NullSafetyMode_Impl_.Strict
Typing macro haxe.macro._Compiler.NullSafetyMode_Impl_.StrictThreaded
Typing macro haxe.macro.ExprTools.toString
Typing macro haxe.macro.ExprTools.iter
Typing macro haxe.macro.ExprTools.opt2
Typing macro haxe.macro.ExprArrayTools.iter
Typing macro haxe.macro.ExprTools.map
Typing macro haxe.macro.ExprArrayTools.map
Typing macro haxe.macro.ExprTools.opt
Typing macro haxe.macro.ExprTools.getValue
Typing macro haxe.macro.MacroStringTools.formatString
Typing macro haxe.macro.MacroStringTools.isFormatExpr
Typing macro haxe.macro.MacroStringTools.toFieldExpr
Typing macro haxe.macro.MacroStringTools.toDotPath
Typing macro haxe.macro.MacroStringTools.toComplex
Typing macro bake._Field.Field_Impl_._new
Typing macro bake._Field.Field_Impl_.lift
Typing macro bake._Field.Field_Impl_.prj
Typing macro bake._Field.Field_Impl_.get_self
Typing macro bake.Baking.get_is_runtime
Typing macro bake.Baking.get_target
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/makro/GetTarget.hx
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/makro/import.hx
Typing macro bake.makro.GetTarget.apply
Parsed /mnt/dat/i/prj/haxe/published/bake/src/main/haxe/bake/TargetId.hx
Typing macro bake.Baking.toString
Typing macro bake.BakingLift.get_build_location
Typing macro bake.BakingLift.get_build_directory
Typing macro bake.BakingLift.get_main
Typing macro Bake.pop
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Log.hx
Typing macro haxe.Log.trace
Typing macro haxe.Log.formatOutput
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StdTypes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/String.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Array.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/ArrayKeyValueIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/EnumTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Exception.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/io/File.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Bytes.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/io/FileInput.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/io/FileOutput.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Output.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Input.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/Encoding.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/sys/io/FileSeek.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/io/BytesData.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int64.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int32.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/CallStack.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Any.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StringBuf.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/EnumValue.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Enum.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/ArrayIterator.hx
Typing macro haxe.iterators.ArrayKeyValueIterator.current
Typing macro haxe.iterators.ArrayKeyValueIterator.new
Typing macro haxe.iterators.ArrayKeyValueIterator.hasNext
Typing macro haxe.iterators.ArrayKeyValueIterator.next
Typing macro haxe.iterators.ArrayIterator.current
Typing macro haxe.iterators.ArrayIterator.new
Typing macro haxe.iterators.ArrayIterator.hasNext
Typing macro haxe.iterators.ArrayIterator.next
Typing macro Array.iterator
Typing macro Array.keyValueIterator
Typing macro Array.map
Typing macro Array.filter
Typing macro haxe.EnumTools.getName
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Type.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Class.hx
Typing macro haxe.EnumTools.createByName
Typing macro haxe.EnumTools.createByIndex
Typing macro haxe.EnumTools.createAll
Typing macro haxe.EnumTools.getConstructors
Typing macro _EnumValue.EnumValue_Impl_.match
Typing macro haxe.EnumValueTools.equals
Typing macro haxe.EnumValueTools.getName
Typing macro haxe.EnumValueTools.getParameters
Typing macro haxe.EnumValueTools.getIndex
Typing macro StringBuf.new
Typing macro StringBuf.get_length
Typing macro StringBuf.add
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/Std.hx
Typing macro StringBuf.addChar
Typing macro StringBuf.addSub
Typing macro StringBuf.toString
Typing macro haxe._CallStack.CallStack_Impl_.get_length
Typing macro haxe._CallStack.CallStack_Impl_.callStack
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/NativeStackTrace.hx
Typing macro haxe._CallStack.CallStack_Impl_.exceptionStack
Typing macro haxe._CallStack.CallStack_Impl_.subtract
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/IntIterator.hx
Typing macro haxe._CallStack.CallStack_Impl_.equalItems
Typing macro haxe._CallStack.CallStack_Impl_.get
Typing macro haxe._CallStack.CallStack_Impl_.asArray
Typing macro IntIterator.new
Typing macro IntIterator.hasNext
Typing macro IntIterator.next
Typing macro haxe._CallStack.CallStack_Impl_.toString
Typing macro haxe._CallStack.CallStack_Impl_.itemToString
Typing macro haxe._CallStack.CallStack_Impl_.copy
Typing macro haxe._CallStack.CallStack_Impl_.exceptionToString
Typing macro _Any.Any_Impl_.__promote
Typing macro _Any.Any_Impl_.toString
Typing macro haxe._Int64.Int64_Impl_._new
Typing macro haxe._Int64.Int64_Impl_.copy
Typing macro haxe._Int64.Int64_Impl_.ofInt
Typing macro haxe._Int64.Int64_Impl_.make
Typing macro haxe._Int64.___Int64.new
Typing macro haxe._Int64.Int64_Impl_.get_high
Typing macro haxe._Int64.Int64_Impl_.get_low
Typing macro haxe._Int64.Int64_Impl_.toInt
Typing macro haxe._Int64.Int64_Impl_.is
Typing macro haxe._Int64.Int64_Impl_.isInt64
Typing macro haxe._Int64.Int64_Impl_.getHigh
Typing macro haxe._Int64.Int64_Impl_.getLow
Typing macro haxe._Int64.Int64_Impl_.isNeg
Typing macro haxe._Int64.Int64_Impl_.isZero
Typing macro haxe._Int64.Int64_Impl_.eq
Typing macro haxe._Int64.Int64_Impl_.compare
Typing macro haxe._Int32.Int32_Impl_.sub
Typing macro haxe._Int32.Int32_Impl_.clamp
Typing macro haxe._Int32.Int32_Impl_.ucompare
Typing macro haxe._Int64.Int64_Impl_.ucompare
Typing macro haxe._Int64.Int64_Impl_.toStr
Typing macro haxe._Int64.Int64_Impl_.toString
Typing macro haxe._Int64.Int64_Impl_.neq
Typing macro haxe._Int64.Int64_Impl_.divMod
Typing macro haxe._Int64.Int64_Impl_.neg
Typing macro haxe._Int32.Int32_Impl_.negate
Typing macro haxe._Int32.Int32_Impl_.postIncrement
Typing macro haxe._Int64.Int64_Impl_.shl
Typing macro haxe._Int64.Int64_Impl_.or
Typing macro haxe._Int64.Int64_Impl_.sub
Typing macro haxe._Int32.Int32_Impl_.postDecrement
Typing macro haxe._Int64.Int64_Impl_.ushr
Typing macro haxe._Int32.Int32_Impl_.add
Typing macro haxe._Int32.Int32_Impl_.addInt
Typing macro haxe._Int32.Int32_Impl_.toFloat
Typing macro haxe._Int64.Int64_Impl_.parseString
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/Int64Helper.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/StringTools.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/StringIterator.hx
Parsed /mnt/dat/i/prj/haxe/published/stx_workspace/.local/stx/o/var/asdf/installs/haxe/4.3.0/bin/std/haxe/iterators/StringKeyValueIterator.hx
Typing macro haxe.Int64Helper.parseString
Typing macro StringTools.trim
Typing macro StringTools.ltrim
Typing macro StringTools.isSpace
Typing macro StringTools.rtrim
Typing macro haxe._Int64.Int64_Impl_.mul
Typing macro haxe._Int64.Int64_Impl_.add