summaryrefslogtreecommitdiff
path: root/.log/tsserver.log
blob: af265816bd20c4ff814c14d9ef933b67b0136482 (about) (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
Info 0    [15:09:50.604] Starting TS Server
Info 1    [15:09:50.605] Version: 4.2.3
Info 2    [15:09:50.605] Arguments: /home/thomas/.local/share/nvm/v15.12.0/bin/node /home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/.bin/tsserver --logFile /home/thomas/Projects/emacs/OrgRoamForceGraphReact/.log/tsserver.log --logVerbosity info --cancellationPipeName /tmp/e52f7165d26730b677751a41ae791b51/tscancellation*
Info 3    [15:09:50.605] Platform: linux NodeVersion: 15 CaseSensitive: true
Info 4    [15:09:50.605] ServerMode: undefined syntaxOnly: false hasUnknownServerMode: undefined
Info 5    [15:09:50.631] Search path: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/graph
Info 6    [15:09:50.633] For info: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/graph/graph.tsx :: Config file name: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 7    [15:09:50.633] Opened configuration file /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 8    [15:09:50.710] Config: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json : {
 "rootNames": [
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/app.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/auto-image/auto-image.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/auto-image/auto-image.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/bullet-item/bullet-item.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/button/button.presets.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/button/button.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/button/button.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/button/button.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/checkbox/checkbox.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/checkbox/checkbox.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/checkbox/checkbox.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/form-row/form-row.presets.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/form-row/form-row.props.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/form-row/form-row.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/form-row/form-row.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/graph/graph.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/graph/graph.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/header/header.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/header/header.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/header/header.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/icon/icon.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/icon/icon.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/icon/icon.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/icon/icons/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/screen/screen.presets.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/screen/screen.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/screen/screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/switch/switch.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/switch/switch.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/switch/switch.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text/text.presets.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text/text.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text/text.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text/text.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text-field/text-field.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/text-field/text-field.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/tweaks/tweaks.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/tweaks/tweaks.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/wallpaper/wallpaper.presets.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/wallpaper/wallpaper.props.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/wallpaper/wallpaper.story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/wallpaper/wallpaper.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/data/randomdata.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/i18n/i18n.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/i18n/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/i18n/translate.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/environment.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/character/character.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/character/character.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/character-store/character-store.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/character-store/character-store.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/extensions/with-environment.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/extensions/with-root-store.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/root-store/root-store-context.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/root-store/root-store.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/models/root-store/setup-root-store.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/navigators/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/navigators/main-navigator.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/navigators/navigation-utilities.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/navigators/root-navigator.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/screens/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/screens/demo/demo-list-screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/screens/demo/demo-screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/screens/graph/graph-screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/screens/welcome/welcome-screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/api-config.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/api-problem.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/api-problem.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/api.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/api.types.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/character-api.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/api/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/reactotron/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/reactotron/reactotron-config.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/reactotron/reactotron.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/reactotron/tron.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/services/reactotron/tron.web.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/color.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/palette.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/spacing.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/timing.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/typography.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/theme/fonts/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/delay.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/ignore-warnings.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/keychain.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/validate.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/storage/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/storage/storage.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/utils/storage/storage.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/i18n.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/mock-async-storage.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/mock-file.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/mock-i18n.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/mock-react-native-image.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/mock-reactotron.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/setup.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/test/storyshots.test.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/storybook-registry.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/storybook.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/toggle-storybook.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/toggle-storybook.web.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/views/index.ts",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/views/story-screen.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/views/story.tsx",
  "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/storybook/views/use-case.tsx"
 ],
 "options": {
  "allowJs": false,
  "allowSyntheticDefaultImports": true,
  "experimentalDecorators": true,
  "jsx": 3,
  "module": 5,
  "moduleResolution": 2,
  "noImplicitAny": false,
  "noImplicitReturns": true,
  "noImplicitThis": true,
  "noUnusedLocals": true,
  "sourceMap": true,
  "target": 99,
  "lib": [
   "lib.esnext.d.ts",
   "lib.dom.d.ts"
  ],
  "skipLibCheck": true,
  "resolveJsonModule": true,
  "configFilePath": "/home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json"
 }
}
Info 9    [15:09:50.856] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 10   [15:09:59.010] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 1 structureChanged: true Elapsed: 8153.333445012569ms
Info 11   [15:09:59.010] Project '/home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json' (Configured)
Info 12   [15:09:59.010] 	Files (658)

Info 13   [15:09:59.010] -----------------------------------------------
Info 14   [15:09:59.082] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
Info 15   [15:10:00.531] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true Elapsed: 1448.9413650035858ms
Info 16   [15:10:00.531] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 17   [15:10:00.531] 	Files (266)

Info 18   [15:10:00.531] -----------------------------------------------
Info 19   [15:10:00.547] Search path: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/data
Info 20   [15:10:00.548] For info: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/data/rando.js :: Config file name: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 21   [15:10:00.550] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 22   [15:10:02.924] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true Elapsed: 2373.9009360074997ms
Info 23   [15:10:02.924] Project '/dev/null/inferredProject1*' (Inferred)
Info 24   [15:10:02.924] 	Files (245)

Info 25   [15:10:02.924] -----------------------------------------------
Info 26   [15:14:36.619] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 27   [15:14:36.702] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 2 structureChanged: false Elapsed: 83.43870198726654ms
Info 28   [15:14:36.702] Different program with same set of files:: structureIsReused:: 2
Info 29   [15:14:37.377] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 30   [15:14:37.430] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 3 structureChanged: false Elapsed: 50.87057399749756ms
Info 31   [15:14:37.430] Different program with same set of files:: structureIsReused:: 2
Info 32   [15:14:38.649] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 33   [15:14:38.686] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 4 structureChanged: false Elapsed: 37.448135018348694ms
Info 34   [15:14:38.686] Different program with same set of files:: structureIsReused:: 2
Info 35   [15:14:39.331] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 36   [15:14:39.410] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 5 structureChanged: false Elapsed: 78.83253699541092ms
Info 37   [15:14:39.410] Different program with same set of files:: structureIsReused:: 2
Info 38   [15:14:39.413] getCompletionData: Get current token: 0.04551899433135986
Info 39   [15:14:39.413] getCompletionData: Is inside comment: 0.13837799429893494
Info 40   [15:14:39.414] getCompletionData: Get previous token 1: 0.09333202242851257
Info 41   [15:14:39.414] getCompletionData: Get previous token 2: 0.16523000597953796
Info 42   [15:14:39.414] getCompletionsAtPosition: isCompletionListBlocker: 0.4169290065765381
Info 43   [15:14:39.537] getCompletionData: Semantic work: 122.62882900238037
Info 44   [15:14:39.541] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 1.9908109903335571
Info 45   [15:14:39.561] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 46   [15:14:39.605] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 6 structureChanged: false Elapsed: 43.69265499711037ms
Info 47   [15:14:39.605] Different program with same set of files:: structureIsReused:: 2
Info 48   [15:14:39.606] getCompletionData: Get current token: 0.03524699807167053
Info 49   [15:14:39.606] getCompletionData: Is inside comment: 0.1183989942073822
Info 50   [15:14:39.606] getCompletionData: Get previous token 1: 0.11169800162315369
Info 51   [15:14:39.606] getCompletionData: Get previous token 2: 0.1715880036354065
Info 52   [15:14:39.606] getCompletionsAtPosition: isCompletionListBlocker: 0.017767995595932007
Info 53   [15:14:39.710] getCompletionData: Semantic work: 103.3148609995842
Info 54   [15:14:39.714] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 2.257412999868393
Info 55   [15:14:39.876] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 56   [15:14:40.013] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 7 structureChanged: false Elapsed: 136.98287698626518ms
Info 57   [15:14:40.014] Different program with same set of files:: structureIsReused:: 2
Info 58   [15:14:40.015] getCompletionData: Get current token: 0.03250199556350708
Info 59   [15:14:40.015] getCompletionData: Is inside comment: 0.13989001512527466
Info 60   [15:14:40.016] getCompletionData: Get previous token 1: 0.11745098233222961
Info 61   [15:14:40.016] getCompletionData: Get previous token 2: 0.16301500797271729
Info 62   [15:14:40.017] getCompletionsAtPosition: isCompletionListBlocker: 0.02900800108909607
Info 63   [15:14:40.297] getCompletionData: Semantic work: 280.37711399793625
Info 64   [15:14:40.301] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.9721960127353668
Info 65   [15:14:40.302] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 66   [15:14:40.354] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 8 structureChanged: false Elapsed: 51.87136599421501ms
Info 67   [15:14:40.354] Different program with same set of files:: structureIsReused:: 2
Info 68   [15:14:40.355] getCompletionData: Get current token: 0.02672901749610901
Info 69   [15:14:40.355] getCompletionData: Is inside comment: 0.1022229790687561
Info 70   [15:14:40.355] getCompletionData: Get previous token 1: 0.08496597409248352
Info 71   [15:14:40.355] getCompletionData: Get previous token 2: 0.1125430166721344
Info 72   [15:14:40.355] getCompletionsAtPosition: isCompletionListBlocker: 0.0273590087890625
Info 73   [15:14:40.445] getCompletionData: Semantic work: 90.02386099100113
Info 74   [15:14:40.447] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.7101999819278717
Info 75   [15:14:40.447] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 76   [15:14:40.480] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 9 structureChanged: false Elapsed: 32.96475398540497ms
Info 77   [15:14:40.481] Different program with same set of files:: structureIsReused:: 2
Info 78   [15:14:40.481] getCompletionData: Get current token: 0.016739994287490845
Info 79   [15:14:40.481] getCompletionData: Is inside comment: 0.068479984998703
Info 80   [15:14:40.481] getCompletionData: Get previous token 1: 0.05813300609588623
Info 81   [15:14:40.481] getCompletionData: Get previous token 2: 0.10730001330375671
Info 82   [15:14:40.482] getCompletionsAtPosition: isCompletionListBlocker: 0.011923998594284058
Info 83   [15:14:40.559] getCompletionData: Semantic work: 77.52169799804688
Info 84   [15:14:40.560] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.45542702078819275
Info 85   [15:14:40.733] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 86   [15:14:40.776] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 10 structureChanged: false Elapsed: 42.18138799071312ms
Info 87   [15:14:40.776] Different program with same set of files:: structureIsReused:: 2
Info 88   [15:14:42.078] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 89   [15:14:42.120] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 11 structureChanged: false Elapsed: 42.53609400987625ms
Info 90   [15:14:42.120] Different program with same set of files:: structureIsReused:: 2
Info 91   [15:14:42.750] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 92   [15:14:42.770] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 12 structureChanged: false Elapsed: 19.679449021816254ms
Info 93   [15:14:42.770] Different program with same set of files:: structureIsReused:: 2
Info 94   [15:14:42.914] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 95   [15:14:42.963] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 13 structureChanged: false Elapsed: 48.6851390004158ms
Info 96   [15:14:42.963] Different program with same set of files:: structureIsReused:: 2
Info 97   [15:14:44.145] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 98   [15:14:44.179] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 14 structureChanged: false Elapsed: 33.00796601176262ms
Info 99   [15:14:44.179] Different program with same set of files:: structureIsReused:: 2
Info 100  [15:14:44.621] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 101  [15:14:44.662] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 15 structureChanged: false Elapsed: 41.19326901435852ms
Info 102  [15:14:44.662] Different program with same set of files:: structureIsReused:: 2
Info 103  [15:14:45.165] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 104  [15:14:45.206] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 16 structureChanged: false Elapsed: 40.86631399393082ms
Info 105  [15:14:45.206] Different program with same set of files:: structureIsReused:: 2
Info 106  [15:14:45.348] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 107  [15:14:45.381] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 17 structureChanged: false Elapsed: 32.66643700003624ms
Info 108  [15:14:45.381] Different program with same set of files:: structureIsReused:: 2
Info 109  [15:14:45.556] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 110  [15:14:45.594] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 18 structureChanged: false Elapsed: 37.88054400682449ms
Info 111  [15:14:45.595] Different program with same set of files:: structureIsReused:: 2
Info 112  [15:14:45.682] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 113  [15:14:45.707] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 19 structureChanged: false Elapsed: 25.52303197979927ms
Info 114  [15:14:45.708] Different program with same set of files:: structureIsReused:: 2
Info 115  [15:14:45.793] getCompletionData: Get current token: 0.027790993452072144
Info 116  [15:14:45.793] getCompletionData: Is inside comment: 0.00827699899673462
Info 117  [15:14:45.793] getCompletionData: Get previous token 1: 0.08564800024032593
Info 118  [15:14:45.793] getCompletionData: Get previous token 2: 0.08257701992988586
Info 119  [15:14:45.794] getCompletionsAtPosition: isCompletionListBlocker: 0.09065601229667664
Info 120  [15:14:45.808] getSymbolsFromOtherSourceFileExports: Recomputing list
Info 121  [15:14:45.941] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 122  [15:14:45.972] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 123  [15:14:45.972] forEachExternalModuleToImportFrom autoImportProvider: 30.25847700238228
Info 124  [15:14:45.972] getSymbolsFromOtherSourceFileExports: 164.12970799207687
Info 125  [15:14:45.982] getCompletionData: Semantic work: 188.09205800294876
Info 126  [15:14:46.010] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 26.572980999946594
Info 127  [15:14:46.215] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 128  [15:14:46.249] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 20 structureChanged: false Elapsed: 33.733137995004654ms
Info 129  [15:14:46.249] Different program with same set of files:: structureIsReused:: 2
Info 130  [15:14:46.330] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 131  [15:14:46.369] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 21 structureChanged: false Elapsed: 38.754113018512726ms
Info 132  [15:14:46.369] Different program with same set of files:: structureIsReused:: 2
Info 133  [15:14:47.159] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 134  [15:14:47.192] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 22 structureChanged: false Elapsed: 32.55403599143028ms
Info 135  [15:14:47.192] Different program with same set of files:: structureIsReused:: 2
Info 136  [15:14:47.880] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 137  [15:14:47.919] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 23 structureChanged: false Elapsed: 39.27691802382469ms
Info 138  [15:14:47.919] Different program with same set of files:: structureIsReused:: 2
Info 139  [15:14:48.024] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 140  [15:14:48.065] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 24 structureChanged: false Elapsed: 41.04655799269676ms
Info 141  [15:14:48.065] Different program with same set of files:: structureIsReused:: 2
Info 142  [15:14:48.468] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 143  [15:14:48.498] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 25 structureChanged: false Elapsed: 30.225662022829056ms
Info 144  [15:14:48.498] Different program with same set of files:: structureIsReused:: 2
Info 145  [15:14:48.717] getCompletionData: Get current token: 0.034628987312316895
Info 146  [15:14:48.717] getCompletionData: Is inside comment: 0.014976978302001953
Info 147  [15:14:48.718] getCompletionData: Get previous token 1: 0.13732501864433289
Info 148  [15:14:48.718] getCompletionsAtPosition: isCompletionListBlocker: 0.014545023441314697
Info 149  [15:14:48.732] getSymbolsFromOtherSourceFileExports: Using cached list
Info 150  [15:14:48.786] getCompletionData: Semantic work: 68.13456499576569
Info 151  [15:14:48.846] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 56.58202901482582
Info 152  [15:14:50.130] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 153  [15:14:50.157] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 26 structureChanged: false Elapsed: 27.050897985696793ms
Info 154  [15:14:50.157] Different program with same set of files:: structureIsReused:: 2
Info 155  [15:14:50.309] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 156  [15:14:50.341] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 27 structureChanged: false Elapsed: 31.772134006023407ms
Info 157  [15:14:50.341] Different program with same set of files:: structureIsReused:: 2
Info 158  [15:14:51.386] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 159  [15:14:51.432] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 28 structureChanged: false Elapsed: 45.658493012189865ms
Info 160  [15:14:51.432] Different program with same set of files:: structureIsReused:: 2
Info 161  [15:15:00.669] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 162  [15:15:00.702] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 29 structureChanged: false Elapsed: 33.167089998722076ms
Info 163  [15:15:00.703] Different program with same set of files:: structureIsReused:: 2
Info 164  [15:15:00.832] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 165  [15:15:00.892] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 30 structureChanged: false Elapsed: 59.923714995384216ms
Info 166  [15:15:00.892] Different program with same set of files:: structureIsReused:: 2
Info 167  [15:15:01.002] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 168  [15:15:01.050] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 31 structureChanged: false Elapsed: 48.51840701699257ms
Info 169  [15:15:01.050] Different program with same set of files:: structureIsReused:: 2
Info 170  [15:15:01.115] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 171  [15:15:01.146] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 32 structureChanged: false Elapsed: 30.280346006155014ms
Info 172  [15:15:01.146] Different program with same set of files:: structureIsReused:: 2
Info 173  [15:15:01.237] getCompletionData: Get current token: 0.04357299208641052
Info 174  [15:15:01.237] getCompletionData: Is inside comment: 0.012499004602432251
Info 175  [15:15:01.238] getCompletionData: Get previous token 1: 0.19436898827552795
Info 176  [15:15:01.238] getCompletionData: Get previous token 2: 0.19907400012016296
Info 177  [15:15:01.238] getCompletionsAtPosition: isCompletionListBlocker: 0.03841999173164368
Info 178  [15:15:01.264] getSymbolsFromOtherSourceFileExports: Using cached list
Info 179  [15:15:01.283] getCompletionData: Semantic work: 45.16089600324631
Info 180  [15:15:01.301] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 17.2498439848423
Info 181  [15:15:01.768] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 182  [15:15:01.801] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 33 structureChanged: false Elapsed: 33.5901780128479ms
Info 183  [15:15:01.801] Different program with same set of files:: structureIsReused:: 2
Info 184  [15:15:02.003] getCompletionData: Get current token: 0.015726983547210693
Info 185  [15:15:02.003] getCompletionData: Is inside comment: 0.006424009799957275
Info 186  [15:15:02.003] getCompletionData: Get previous token 1: 0.1553490161895752
Info 187  [15:15:02.004] getCompletionsAtPosition: isCompletionListBlocker: 0.003122001886367798
Info 188  [15:15:02.100] getCompletionData: Semantic work: 96.0582270026207
Info 189  [15:15:02.100] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.05955001711845398
Info 190  [15:15:14.017] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 191  [15:15:14.056] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 34 structureChanged: false Elapsed: 38.97445002198219ms
Info 192  [15:15:14.057] Different program with same set of files:: structureIsReused:: 2
Info 193  [15:15:14.160] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 194  [15:15:14.205] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 35 structureChanged: false Elapsed: 45.522628992795944ms
Info 195  [15:15:14.206] Different program with same set of files:: structureIsReused:: 2
Info 196  [15:15:14.358] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 197  [15:15:14.388] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 36 structureChanged: false Elapsed: 30.12370601296425ms
Info 198  [15:15:14.388] Different program with same set of files:: structureIsReused:: 2
Info 199  [15:15:14.551] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 200  [15:15:14.582] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 37 structureChanged: false Elapsed: 31.16930800676346ms
Info 201  [15:15:14.582] Different program with same set of files:: structureIsReused:: 2
Info 202  [15:15:14.867] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 203  [15:15:14.905] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 38 structureChanged: false Elapsed: 37.65727698802948ms
Info 204  [15:15:14.905] Different program with same set of files:: structureIsReused:: 2
Info 205  [15:15:15.147] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 206  [15:15:15.198] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 39 structureChanged: false Elapsed: 50.061517983675ms
Info 207  [15:15:15.198] Different program with same set of files:: structureIsReused:: 2
Info 208  [15:15:15.348] getCompletionData: Get current token: 0.027305006980895996
Info 209  [15:15:15.348] getCompletionData: Is inside comment: 0.03389498591423035
Info 210  [15:15:15.349] getCompletionData: Get previous token 1: 0.19438201189041138
Info 211  [15:15:15.349] getCompletionsAtPosition: isCompletionListBlocker: 0.004717022180557251
Info 212  [15:15:15.351] getCompletionData: Semantic work: 1.8805819749832153
Info 213  [15:15:15.415] getCompletionData: Get current token: 0.045736998319625854
Info 214  [15:15:15.416] getCompletionData: Is inside comment: 0.00885099172592163
Info 215  [15:15:15.416] getCompletionData: Get previous token 1: 0.08443698287010193
Info 216  [15:15:15.416] getCompletionsAtPosition: isCompletionListBlocker: 0.004173994064331055
Info 217  [15:15:15.520] getCompletionData: Semantic work: 104.26618698239326
Info 218  [15:15:15.522] getCompletionData: Get current token: 0.025512993335723877
Info 219  [15:15:15.522] getCompletionData: Is inside comment: 0.006797999143600464
Info 220  [15:15:15.522] getCompletionData: Get previous token 1: 0.058267027139663696
Info 221  [15:15:15.522] getCompletionsAtPosition: isCompletionListBlocker: 0.004300981760025024
Info 222  [15:15:15.523] getCompletionData: Semantic work: 0.8704180121421814
Info 223  [15:15:15.524] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 224  [15:15:15.563] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 40 structureChanged: false Elapsed: 38.99891299009323ms
Info 225  [15:15:15.563] Different program with same set of files:: structureIsReused:: 2
Info 226  [15:15:15.659] getCompletionData: Get current token: 0.02732202410697937
Info 227  [15:15:15.659] getCompletionData: Is inside comment: 0.00975501537322998
Info 228  [15:15:15.659] getCompletionData: Get previous token 1: 0.1072399914264679
Info 229  [15:15:15.659] getCompletionData: Get previous token 2: 0.12128397822380066
Info 230  [15:15:15.659] getCompletionsAtPosition: isCompletionListBlocker: 0.0070059895515441895
Info 231  [15:15:15.661] getCompletionData: Semantic work: 2.073973000049591
Info 232  [15:15:15.662] getCompletionData: Get current token: 0.026912003755569458
Info 233  [15:15:15.662] getCompletionData: Is inside comment: 0.007098019123077393
Info 234  [15:15:15.662] getCompletionData: Get previous token 1: 0.08970201015472412
Info 235  [15:15:15.662] getCompletionData: Get previous token 2: 0.048188984394073486
Info 236  [15:15:15.662] getCompletionsAtPosition: isCompletionListBlocker: 0.006400972604751587
Info 237  [15:15:15.663] getCompletionData: Semantic work: 0.962037980556488
Info 238  [15:15:15.664] getCompletionData: Get current token: 0.03049299120903015
Info 239  [15:15:15.664] getCompletionData: Is inside comment: 0.007057011127471924
Info 240  [15:15:15.664] getCompletionData: Get previous token 1: 0.05707502365112305
Info 241  [15:15:15.664] getCompletionData: Get previous token 2: 0.052664995193481445
Info 242  [15:15:15.664] getCompletionsAtPosition: isCompletionListBlocker: 0.004600018262863159
Info 243  [15:15:15.665] getCompletionData: Semantic work: 0.9429439902305603
Info 244  [15:15:15.678] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 245  [15:15:15.717] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 41 structureChanged: false Elapsed: 38.52890598773956ms
Info 246  [15:15:15.717] Different program with same set of files:: structureIsReused:: 2
Info 247  [15:15:15.717] getCompletionData: Get current token: 0.01762700080871582
Info 248  [15:15:15.717] getCompletionData: Is inside comment: 0.005760014057159424
Info 249  [15:15:15.717] getCompletionData: Get previous token 1: 0.07313099503517151
Info 250  [15:15:15.718] getCompletionData: Get previous token 2: 0.0350000262260437
Info 251  [15:15:15.718] getCompletionsAtPosition: isCompletionListBlocker: 0.0054129958152771
Info 252  [15:15:15.779] getCompletionData: Semantic work: 61.248877972364426
Info 253  [15:15:15.823] getCompletionData: Get current token: 0.04443401098251343
Info 254  [15:15:15.823] getCompletionData: Is inside comment: 0.007351011037826538
Info 255  [15:15:15.823] getCompletionData: Get previous token 1: 0.07514598965644836
Info 256  [15:15:15.823] getCompletionData: Get previous token 2: 0.06904399394989014
Info 257  [15:15:15.823] getCompletionsAtPosition: isCompletionListBlocker: 0.004271984100341797
Info 258  [15:15:15.825] getCompletionData: Semantic work: 1.6839220225811005
Info 259  [15:15:15.827] getCompletionData: Get current token: 0.044137001037597656
Info 260  [15:15:15.827] getCompletionData: Is inside comment: 0.007034987211227417
Info 261  [15:15:15.827] getCompletionData: Get previous token 1: 0.07747998833656311
Info 262  [15:15:15.827] getCompletionData: Get previous token 2: 0.069132000207901
Info 263  [15:15:15.827] getCompletionsAtPosition: isCompletionListBlocker: 0.004103988409042358
Info 264  [15:15:15.828] getCompletionData: Semantic work: 1.2536090016365051
Info 265  [15:15:16.004] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 266  [15:15:16.026] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 42 structureChanged: false Elapsed: 22.100255012512207ms
Info 267  [15:15:16.026] Different program with same set of files:: structureIsReused:: 2
Info 268  [15:15:16.027] getCompletionData: Get current token: 0.015193015336990356
Info 269  [15:15:16.027] getCompletionData: Is inside comment: 0.0060520172119140625
Info 270  [15:15:16.028] getCompletionData: Get previous token 1: 0.18007799983024597
Info 271  [15:15:16.028] getCompletionData: Get previous token 2: 0.05522400140762329
Info 272  [15:15:16.028] getCompletionsAtPosition: isCompletionListBlocker: 0.009442001581192017
Info 273  [15:15:16.096] getCompletionData: Semantic work: 68.48668101429939
Info 274  [15:15:16.098] getCompletionData: Get current token: 0.03917500376701355
Info 275  [15:15:16.099] getCompletionData: Is inside comment: 0.00583299994468689
Info 276  [15:15:16.099] getCompletionData: Get previous token 1: 0.07135498523712158
Info 277  [15:15:16.099] getCompletionData: Get previous token 2: 0.06955200433731079
Info 278  [15:15:16.099] getCompletionsAtPosition: isCompletionListBlocker: 0.003366023302078247
Info 279  [15:15:16.100] getCompletionData: Semantic work: 1.1514979898929596
Info 280  [15:15:16.101] getCompletionData: Get current token: 0.04008397459983826
Info 281  [15:15:16.102] getCompletionData: Is inside comment: 0.006505995988845825
Info 282  [15:15:16.102] getCompletionData: Get previous token 1: 0.07134398818016052
Info 283  [15:15:16.102] getCompletionData: Get previous token 2: 0.0683169960975647
Info 284  [15:15:16.102] getCompletionsAtPosition: isCompletionListBlocker: 0.0038840174674987793
Info 285  [15:15:16.103] getCompletionData: Semantic work: 1.477634996175766
Info 286  [15:15:16.152] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 287  [15:15:16.195] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 43 structureChanged: false Elapsed: 42.46762800216675ms
Info 288  [15:15:16.195] Different program with same set of files:: structureIsReused:: 2
Info 289  [15:15:16.323] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 290  [15:15:16.345] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 44 structureChanged: false Elapsed: 22.179232001304626ms
Info 291  [15:15:16.345] Different program with same set of files:: structureIsReused:: 2
Info 292  [15:15:16.539] getCompletionData: Get current token: 0.02835598587989807
Info 293  [15:15:16.539] getCompletionData: Is inside comment: 0.007542997598648071
Info 294  [15:15:16.539] getCompletionData: Get previous token 1: 0.058609992265701294
Info 295  [15:15:16.539] getCompletionData: Get previous token 2: 0.056482017040252686
Info 296  [15:15:16.539] getCompletionsAtPosition: isCompletionListBlocker: 0.004449009895324707
Info 297  [15:15:16.610] getCompletionData: Semantic work: 70.78429499268532
Info 298  [15:15:16.638] getCompletionData: Get current token: 0.02144297957420349
Info 299  [15:15:16.638] getCompletionData: Is inside comment: 0.006153017282485962
Info 300  [15:15:16.638] getCompletionData: Get previous token 1: 0.040452003479003906
Info 301  [15:15:16.638] getCompletionData: Get previous token 2: 0.045104026794433594
Info 302  [15:15:16.638] getCompletionsAtPosition: isCompletionListBlocker: 0.0028409957885742188
Info 303  [15:15:16.639] getCompletionData: Semantic work: 0.7362410128116608
Info 304  [15:15:16.641] getCompletionData: Get current token: 0.03439098596572876
Info 305  [15:15:16.641] getCompletionData: Is inside comment: 0.006242990493774414
Info 306  [15:15:16.642] getCompletionData: Get previous token 1: 0.05456802248954773
Info 307  [15:15:16.642] getCompletionData: Get previous token 2: 0.049694985151290894
Info 308  [15:15:16.642] getCompletionsAtPosition: isCompletionListBlocker: 0.0037630200386047363
Info 309  [15:15:16.643] getCompletionData: Semantic work: 0.8537010252475739
Info 310  [15:15:17.029] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 311  [15:15:17.068] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 45 structureChanged: false Elapsed: 38.16698798537254ms
Info 312  [15:15:17.068] Different program with same set of files:: structureIsReused:: 2
Info 313  [15:15:17.267] getCompletionData: Get current token: 0.016669005155563354
Info 314  [15:15:17.267] getCompletionData: Is inside comment: 0.005235999822616577
Info 315  [15:15:17.267] getCompletionData: Get previous token 1: 0.03555700182914734
Info 316  [15:15:17.267] getCompletionData: Get previous token 2: 0.045931994915008545
Info 317  [15:15:17.267] getCompletionsAtPosition: isCompletionListBlocker: 0.0030789971351623535
Info 318  [15:15:17.347] getCompletionData: Semantic work: 79.41945099830627
Info 319  [15:15:17.464] getCompletionData: Get current token: 0.014353007078170776
Info 320  [15:15:17.464] getCompletionData: Is inside comment: 0.005357980728149414
Info 321  [15:15:17.464] getCompletionData: Get previous token 1: 0.04623299837112427
Info 322  [15:15:17.464] getCompletionData: Get previous token 2: 0.05172601342201233
Info 323  [15:15:17.464] getCompletionsAtPosition: isCompletionListBlocker: 0.0035449862480163574
Info 324  [15:15:17.465] getCompletionData: Semantic work: 0.9923020005226135
Info 325  [15:15:17.502] getCompletionData: Get current token: 0.040737003087997437
Info 326  [15:15:17.502] getCompletionData: Is inside comment: 0.0067099928855896
Info 327  [15:15:17.502] getCompletionData: Get previous token 1: 0.06772100925445557
Info 328  [15:15:17.502] getCompletionData: Get previous token 2: 0.06508299708366394
Info 329  [15:15:17.503] getCompletionsAtPosition: isCompletionListBlocker: 0.005710989236831665
Info 330  [15:15:17.504] getCompletionData: Semantic work: 1.391167014837265
Info 331  [15:16:44.097] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 332  [15:16:44.131] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 46 structureChanged: false Elapsed: 34.173948019742966ms
Info 333  [15:16:44.131] Different program with same set of files:: structureIsReused:: 2
Info 334  [15:16:44.667] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 335  [15:16:44.698] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 47 structureChanged: false Elapsed: 31.103227019309998ms
Info 336  [15:16:44.698] Different program with same set of files:: structureIsReused:: 2
Info 337  [15:16:44.771] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 338  [15:16:44.803] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 48 structureChanged: false Elapsed: 32.35909402370453ms
Info 339  [15:16:44.804] Different program with same set of files:: structureIsReused:: 2
Info 340  [15:16:44.868] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 341  [15:16:44.889] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 49 structureChanged: false Elapsed: 20.88713899254799ms
Info 342  [15:16:44.889] Different program with same set of files:: structureIsReused:: 2
Info 343  [15:16:44.944] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 344  [15:16:44.965] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 50 structureChanged: false Elapsed: 20.712691992521286ms
Info 345  [15:16:44.965] Different program with same set of files:: structureIsReused:: 2
Info 346  [15:16:45.018] getCompletionData: Get current token: 0.026983022689819336
Info 347  [15:16:45.018] getCompletionData: Is inside comment: 0.007165014743804932
Info 348  [15:16:45.019] getCompletionData: Get previous token 1: 0.0784589946269989
Info 349  [15:16:45.019] getCompletionData: Get previous token 2: 0.14380499720573425
Info 350  [15:16:45.019] getCompletionsAtPosition: isCompletionListBlocker: 0.01179400086402893
Info 351  [15:16:45.019] getCompletionData: Semantic work: 0.5079960227012634
Info 352  [15:16:45.019] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.05918499827384949
Info 353  [15:16:45.861] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 354  [15:16:45.904] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 51 structureChanged: false Elapsed: 42.89752197265625ms
Info 355  [15:16:45.904] Different program with same set of files:: structureIsReused:: 2
Info 356  [15:16:46.499] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 357  [15:16:46.527] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 52 structureChanged: false Elapsed: 27.5833860039711ms
Info 358  [15:16:46.527] Different program with same set of files:: structureIsReused:: 2
Info 359  [15:16:48.183] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 360  [15:16:48.214] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 53 structureChanged: false Elapsed: 30.79322800040245ms
Info 361  [15:16:48.214] Different program with same set of files:: structureIsReused:: 2
Info 362  [15:16:48.393] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 363  [15:16:48.410] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 54 structureChanged: false Elapsed: 17.601590007543564ms
Info 364  [15:16:48.410] Different program with same set of files:: structureIsReused:: 2
Info 365  [15:16:48.844] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 366  [15:16:48.870] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 55 structureChanged: false Elapsed: 25.44658899307251ms
Info 367  [15:16:48.870] Different program with same set of files:: structureIsReused:: 2
Info 368  [15:16:48.938] getCompletionData: Get current token: 0.016144990921020508
Info 369  [15:16:48.938] getCompletionData: Is inside comment: 0.004813015460968018
Info 370  [15:16:48.938] getCompletionData: Get previous token 1: 0.045582979917526245
Info 371  [15:16:48.938] getCompletionsAtPosition: isCompletionListBlocker: 0.20300298929214478
Info 372  [15:16:48.951] getSymbolsFromOtherSourceFileExports: Using cached list
Info 373  [15:16:48.976] getCompletionData: Semantic work: 37.64567497372627
Info 374  [15:16:48.995] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 18.667856007814407
Info 375  [15:16:50.452] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 376  [15:16:50.482] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 56 structureChanged: false Elapsed: 30.139373004436493ms
Info 377  [15:16:50.482] Different program with same set of files:: structureIsReused:: 2
Info 378  [15:17:40.924] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 379  [15:17:40.976] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 57 structureChanged: false Elapsed: 52.2129890024662ms
Info 380  [15:17:40.976] Different program with same set of files:: structureIsReused:: 2
Info 381  [15:17:41.548] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 382  [15:17:41.591] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 58 structureChanged: false Elapsed: 43.58108800649643ms
Info 383  [15:17:41.592] Different program with same set of files:: structureIsReused:: 2
Info 384  [15:17:41.997] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 385  [15:17:42.024] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 59 structureChanged: false Elapsed: 27.054888010025024ms
Info 386  [15:17:42.024] Different program with same set of files:: structureIsReused:: 2
Info 387  [15:17:42.170] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 388  [15:17:42.205] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 60 structureChanged: false Elapsed: 34.443239986896515ms
Info 389  [15:17:42.205] Different program with same set of files:: structureIsReused:: 2
Info 390  [15:17:42.331] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 391  [15:17:42.370] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 61 structureChanged: false Elapsed: 38.87356701493263ms
Info 392  [15:17:42.370] Different program with same set of files:: structureIsReused:: 2
Info 393  [15:17:42.463] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 394  [15:17:42.488] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 62 structureChanged: false Elapsed: 25.015141993761063ms
Info 395  [15:17:42.488] Different program with same set of files:: structureIsReused:: 2
Info 396  [15:17:42.594] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 397  [15:17:42.618] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 63 structureChanged: false Elapsed: 24.00898602604866ms
Info 398  [15:17:42.618] Different program with same set of files:: structureIsReused:: 2
Info 399  [15:17:42.706] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 400  [15:17:42.746] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 64 structureChanged: false Elapsed: 39.47268998622894ms
Info 401  [15:17:42.746] Different program with same set of files:: structureIsReused:: 2
Info 402  [15:17:42.953] getCompletionData: Get current token: 0.025492995977401733
Info 403  [15:17:42.953] getCompletionData: Is inside comment: 0.005764007568359375
Info 404  [15:17:42.953] getCompletionData: Get previous token 1: 0.048821985721588135
Info 405  [15:17:42.953] getCompletionData: Get previous token 2: 0.04891499876976013
Info 406  [15:17:42.954] getCompletionsAtPosition: isCompletionListBlocker: 0.012652009725570679
Info 407  [15:17:42.980] getSymbolsFromOtherSourceFileExports: Using cached list
Info 408  [15:17:43.251] getCompletionData: Semantic work: 297.011146992445
Info 409  [15:17:43.312] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 59.179036021232605
Info 410  [15:17:43.568] getCompletionData: Get current token: 0.023441016674041748
Info 411  [15:17:43.568] getCompletionData: Is inside comment: 0.006215989589691162
Info 412  [15:17:43.568] getCompletionData: Get previous token 1: 0.04765599966049194
Info 413  [15:17:43.568] getCompletionData: Get previous token 2: 0.04795199632644653
Info 414  [15:17:43.569] getCompletionsAtPosition: isCompletionListBlocker: 0.01195499300956726
Info 415  [15:17:43.589] getSymbolsFromOtherSourceFileExports: Using cached list
Info 416  [15:17:43.598] getCompletionData: Semantic work: 29.82819202542305
Info 417  [15:17:43.621] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 22.626244008541107
Info 418  [15:17:43.635] getCompletionData: Get current token: 0.031682997941970825
Info 419  [15:17:43.635] getCompletionData: Is inside comment: 0.010333001613616943
Info 420  [15:17:43.635] getCompletionData: Get previous token 1: 0.06537601351737976
Info 421  [15:17:43.635] getCompletionData: Get previous token 2: 0.04978501796722412
Info 422  [15:17:43.636] getCompletionsAtPosition: isCompletionListBlocker: 0.013775020837783813
Info 423  [15:17:43.647] getSymbolsFromOtherSourceFileExports: Using cached list
Info 424  [15:17:43.663] getCompletionData: Semantic work: 27.323597997426987
Info 425  [15:17:43.677] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 13.44844201207161
Info 426  [15:17:43.682] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 427  [15:17:43.711] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 65 structureChanged: false Elapsed: 28.88346502184868ms
Info 428  [15:17:43.711] Different program with same set of files:: structureIsReused:: 2
Info 429  [15:17:43.799] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 430  [15:17:43.825] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 66 structureChanged: false Elapsed: 25.5120709836483ms
Info 431  [15:17:43.825] Different program with same set of files:: structureIsReused:: 2
Info 432  [15:17:43.892] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 433  [15:17:43.923] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 67 structureChanged: false Elapsed: 31.153405010700226ms
Info 434  [15:17:43.923] Different program with same set of files:: structureIsReused:: 2
Info 435  [15:17:43.997] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 436  [15:17:44.034] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 68 structureChanged: false Elapsed: 36.677610993385315ms
Info 437  [15:17:44.034] Different program with same set of files:: structureIsReused:: 2
Info 438  [15:17:44.094] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 439  [15:17:44.118] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 69 structureChanged: false Elapsed: 24.276959002017975ms
Info 440  [15:17:44.118] Different program with same set of files:: structureIsReused:: 2
Info 441  [15:17:44.227] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 442  [15:17:44.252] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 70 structureChanged: false Elapsed: 24.239245980978012ms
Info 443  [15:17:44.252] Different program with same set of files:: structureIsReused:: 2
Info 444  [15:17:44.316] getCompletionData: Get current token: 0.014284998178482056
Info 445  [15:17:44.316] getCompletionData: Is inside comment: 0.006598025560379028
Info 446  [15:17:44.341] getCompletionData: Get previous token 1: 0.19319498538970947
Info 447  [15:17:44.341] getCompletionData: Get previous token 2: 0.04837200045585632
Info 448  [15:17:44.341] getCompletionsAtPosition: isCompletionListBlocker: 0.014088988304138184
Info 449  [15:17:44.348] getSymbolsFromOtherSourceFileExports: Using cached list
Info 450  [15:17:44.354] getCompletionData: Semantic work: 13.373446017503738
Info 451  [15:17:44.362] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 7.525216996669769
Info 452  [15:17:44.819] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 453  [15:17:44.852] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 71 structureChanged: false Elapsed: 33.08404898643494ms
Info 454  [15:17:44.852] Different program with same set of files:: structureIsReused:: 2
Info 455  [15:17:45.134] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 456  [15:17:45.158] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 72 structureChanged: false Elapsed: 23.223298996686935ms
Info 457  [15:17:45.158] Different program with same set of files:: structureIsReused:: 2
Info 458  [15:17:45.249] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 459  [15:17:45.283] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 73 structureChanged: false Elapsed: 33.900250017642975ms
Info 460  [15:17:45.283] Different program with same set of files:: structureIsReused:: 2
Info 461  [15:17:45.534] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 462  [15:17:45.574] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 74 structureChanged: false Elapsed: 39.574233025312424ms
Info 463  [15:17:45.574] Different program with same set of files:: structureIsReused:: 2
Info 464  [15:17:45.713] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 465  [15:17:45.733] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 75 structureChanged: false Elapsed: 20.5505910217762ms
Info 466  [15:17:45.733] Different program with same set of files:: structureIsReused:: 2
Info 467  [15:17:45.807] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 468  [15:17:45.829] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 76 structureChanged: false Elapsed: 21.755580008029938ms
Info 469  [15:17:45.829] Different program with same set of files:: structureIsReused:: 2
Info 470  [15:17:45.921] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 471  [15:17:45.954] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 77 structureChanged: false Elapsed: 32.31962099671364ms
Info 472  [15:17:45.954] Different program with same set of files:: structureIsReused:: 2
Info 473  [15:17:46.047] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 474  [15:17:46.073] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 78 structureChanged: false Elapsed: 25.834376007318497ms
Info 475  [15:17:46.073] Different program with same set of files:: structureIsReused:: 2
Info 476  [15:17:48.186] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 477  [15:17:48.201] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 478  [15:17:48.201] forEachExternalModuleToImportFrom autoImportProvider: 14.210033982992172
Info 479  [15:17:48.395] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 480  [15:17:48.420] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 79 structureChanged: false Elapsed: 25.41848799586296ms
Info 481  [15:17:48.421] Different program with same set of files:: structureIsReused:: 2
Info 482  [15:17:48.519] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 483  [15:17:48.550] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 80 structureChanged: false Elapsed: 30.086003005504608ms
Info 484  [15:17:48.550] Different program with same set of files:: structureIsReused:: 2
Info 485  [15:17:48.656] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 486  [15:17:48.696] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 81 structureChanged: false Elapsed: 40.13493898510933ms
Info 487  [15:17:48.696] Different program with same set of files:: structureIsReused:: 2
Info 488  [15:17:48.860] getCompletionData: Get current token: 0.016335010528564453
Info 489  [15:17:48.860] getCompletionData: Is inside comment: 0.0068759918212890625
Info 490  [15:17:48.861] getCompletionData: Get previous token 1: 0.048105984926223755
Info 491  [15:17:48.861] getCompletionData: Get previous token 2: 0.05033800005912781
Info 492  [15:17:48.861] getCompletionsAtPosition: isCompletionListBlocker: 0.01808398962020874
Info 493  [15:17:48.874] getSymbolsFromOtherSourceFileExports: Using cached list
Info 494  [15:17:48.890] getCompletionData: Semantic work: 29.5574189722538
Info 495  [15:17:48.901] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 10.422443985939026
Info 496  [15:17:49.365] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 497  [15:17:49.401] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 498  [15:17:49.402] forEachExternalModuleToImportFrom autoImportProvider: 34.970750004053116
Info 499  [15:17:49.404] getCompletionData: Get current token: 0.041188985109329224
Info 500  [15:17:49.405] getCompletionData: Is inside comment: 0.014820992946624756
Info 501  [15:17:49.405] getCompletionData: Get previous token 1: 0.07663002610206604
Info 502  [15:17:49.405] getCompletionData: Get previous token 2: 0.06862097978591919
Info 503  [15:17:49.406] getCompletionsAtPosition: isCompletionListBlocker: 0.014546990394592285
Info 504  [15:17:49.435] getSymbolsFromOtherSourceFileExports: Using cached list
Info 505  [15:17:49.448] getCompletionData: Semantic work: 41.67372101545334
Info 506  [15:17:49.457] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 8.18953400850296
Info 507  [15:17:49.482] getCompletionData: Get current token: 0.041567981243133545
Info 508  [15:17:49.488] getCompletionData: Is inside comment: 0.026874005794525146
Info 509  [15:17:49.488] getCompletionData: Get previous token 1: 0.10168400406837463
Info 510  [15:17:49.488] getCompletionData: Get previous token 2: 0.06768998503684998
Info 511  [15:17:49.489] getCompletionsAtPosition: isCompletionListBlocker: 0.02043899893760681
Info 512  [15:17:49.496] getSymbolsFromOtherSourceFileExports: Using cached list
Info 513  [15:17:49.500] getCompletionData: Semantic work: 11.230548977851868
Info 514  [15:17:49.505] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.120106995105743
Info 515  [15:17:49.511] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 516  [15:17:49.569] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 82 structureChanged: false Elapsed: 58.624849021434784ms
Info 517  [15:17:49.569] Different program with same set of files:: structureIsReused:: 2
Info 518  [15:17:49.743] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 519  [15:17:49.806] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 83 structureChanged: false Elapsed: 62.60493302345276ms
Info 520  [15:17:49.807] Different program with same set of files:: structureIsReused:: 2
Info 521  [15:17:49.883] getCompletionData: Get current token: 0.02753499150276184
Info 522  [15:17:49.883] getCompletionData: Is inside comment: 0.008487999439239502
Info 523  [15:17:49.884] getCompletionData: Get previous token 1: 0.06367999315261841
Info 524  [15:17:49.884] getCompletionsAtPosition: isCompletionListBlocker: 0.009618997573852539
Info 525  [15:17:49.884] getCompletionData: Semantic work: 0.3966519832611084
Info 526  [15:17:49.885] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.4715139865875244
Info 527  [15:17:50.341] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 528  [15:17:50.354] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 529  [15:17:50.354] forEachExternalModuleToImportFrom autoImportProvider: 12.335622012615204
Info 530  [15:17:50.354] getCompletionData: Get current token: 0.016738027334213257
Info 531  [15:17:50.354] getCompletionData: Is inside comment: 0.004296988248825073
Info 532  [15:17:50.354] getCompletionData: Get previous token 1: 0.03591501712799072
Info 533  [15:17:50.354] getCompletionsAtPosition: isCompletionListBlocker: 0.0045320093631744385
Info 534  [15:17:50.355] getCompletionData: Semantic work: 0.217600017786026
Info 535  [15:17:50.355] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.05386000871658325
Info 536  [15:17:50.355] getCompletionData: Get current token: 0.015266001224517822
Info 537  [15:17:50.355] getCompletionData: Is inside comment: 0.0038380026817321777
Info 538  [15:17:50.355] getCompletionData: Get previous token 1: 0.03926399350166321
Info 539  [15:17:50.355] getCompletionsAtPosition: isCompletionListBlocker: 0.0029259920120239258
Info 540  [15:17:50.355] getCompletionData: Semantic work: 0.17135000228881836
Info 541  [15:17:50.355] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.028548985719680786
Info 542  [15:17:50.430] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 543  [15:17:50.590] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 84 structureChanged: false Elapsed: 160.53484600782394ms
Info 544  [15:17:50.590] Different program with same set of files:: structureIsReused:: 2
Info 545  [15:17:50.901] getCompletionData: Get current token: 0.027289003133773804
Info 546  [15:17:50.902] getCompletionData: Is inside comment: 0.019728004932403564
Info 547  [15:17:50.902] getCompletionData: Get previous token 1: 0.12017601728439331
Info 548  [15:17:50.902] getCompletionsAtPosition: isCompletionListBlocker: 0.006134003400802612
Info 549  [15:17:50.903] getCompletionData: Semantic work: 0.7610099911689758
Info 550  [15:17:51.081] getCompletionData: Get current token: 0.023296982049942017
Info 551  [15:17:51.081] getCompletionData: Is inside comment: 0.006804972887039185
Info 552  [15:17:51.081] getCompletionData: Get previous token 1: 0.051412999629974365
Info 553  [15:17:51.081] getCompletionsAtPosition: isCompletionListBlocker: 0.005216002464294434
Info 554  [15:17:51.082] getCompletionData: Semantic work: 0.6345890164375305
Info 555  [15:17:51.161] getCompletionData: Get current token: 0.016297996044158936
Info 556  [15:17:51.161] getCompletionData: Is inside comment: 0.006067991256713867
Info 557  [15:17:51.161] getCompletionData: Get previous token 1: 0.05512702465057373
Info 558  [15:17:51.161] getCompletionsAtPosition: isCompletionListBlocker: 0.005030006170272827
Info 559  [15:17:51.161] getCompletionData: Semantic work: 0.6505500078201294
Info 560  [15:17:51.621] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 561  [15:17:51.664] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 85 structureChanged: false Elapsed: 42.63901099562645ms
Info 562  [15:17:51.665] Different program with same set of files:: structureIsReused:: 2
Info 563  [15:17:51.666] getCompletionData: Get current token: 0.029749006032943726
Info 564  [15:17:51.666] getCompletionData: Is inside comment: 0.011256992816925049
Info 565  [15:17:51.666] getCompletionData: Get previous token 1: 0.11793997883796692
Info 566  [15:17:51.667] getCompletionData: Get previous token 2: 0.06717899441719055
Info 567  [15:17:51.667] getCompletionsAtPosition: isCompletionListBlocker: 0.006503015756607056
Info 568  [15:17:51.762] getCompletionData: Semantic work: 94.49921399354935
Info 569  [15:17:51.785] getCompletionData: Get current token: 0.025617986917495728
Info 570  [15:17:51.785] getCompletionData: Is inside comment: 0.006400018930435181
Info 571  [15:17:51.785] getCompletionData: Get previous token 1: 0.04468899965286255
Info 572  [15:17:51.785] getCompletionData: Get previous token 2: 0.046478986740112305
Info 573  [15:17:51.785] getCompletionsAtPosition: isCompletionListBlocker: 0.005265027284622192
Info 574  [15:17:51.786] getCompletionData: Semantic work: 0.6884170174598694
Info 575  [15:17:51.789] getCompletionData: Get current token: 0.029448002576828003
Info 576  [15:17:51.789] getCompletionData: Is inside comment: 0.010802000761032104
Info 577  [15:17:51.789] getCompletionData: Get previous token 1: 0.07071399688720703
Info 578  [15:17:51.789] getCompletionData: Get previous token 2: 0.05184999108314514
Info 579  [15:17:51.789] getCompletionsAtPosition: isCompletionListBlocker: 0.005971997976303101
Info 580  [15:17:51.790] getCompletionData: Semantic work: 0.6749509871006012
Info 581  [15:17:52.017] getCompletionData: Get current token: 0.02320200204849243
Info 582  [15:17:52.017] getCompletionData: Is inside comment: 0.005485981702804565
Info 583  [15:17:52.017] getCompletionData: Get previous token 1: 0.049246013164520264
Info 584  [15:17:52.018] getCompletionData: Get previous token 2: 0.04556199908256531
Info 585  [15:17:52.018] getCompletionsAtPosition: isCompletionListBlocker: 0.00434499979019165
Info 586  [15:17:52.018] getCompletionData: Semantic work: 0.6884570121765137
Info 587  [15:17:52.060] getCompletionData: Get current token: 0.014127999544143677
Info 588  [15:17:52.061] getCompletionData: Is inside comment: 0.004967987537384033
Info 589  [15:17:52.061] getCompletionData: Get previous token 1: 0.04312998056411743
Info 590  [15:17:52.061] getCompletionData: Get previous token 2: 0.04487299919128418
Info 591  [15:17:52.061] getCompletionsAtPosition: isCompletionListBlocker: 0.004285991191864014
Info 592  [15:17:52.124] getCompletionData: Semantic work: 63.25486600399017
Info 593  [15:17:52.126] getCompletionData: Get current token: 0.01301199197769165
Info 594  [15:17:52.126] getCompletionData: Is inside comment: 0.005138993263244629
Info 595  [15:17:52.126] getCompletionData: Get previous token 1: 0.04239499568939209
Info 596  [15:17:52.126] getCompletionData: Get previous token 2: 0.046633005142211914
Info 597  [15:17:52.126] getCompletionsAtPosition: isCompletionListBlocker: 0.004680991172790527
Info 598  [15:17:52.127] getCompletionData: Semantic work: 0.5507690012454987
Info 599  [15:17:52.235] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 600  [15:17:52.276] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 86 structureChanged: false Elapsed: 40.85833701491356ms
Info 601  [15:17:52.276] Different program with same set of files:: structureIsReused:: 2
Info 602  [15:17:52.407] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 603  [15:17:52.432] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 87 structureChanged: false Elapsed: 25.512118995189667ms
Info 604  [15:17:52.433] Different program with same set of files:: structureIsReused:: 2
Info 605  [15:17:52.552] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 606  [15:17:52.581] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 88 structureChanged: false Elapsed: 29.24422898888588ms
Info 607  [15:17:52.581] Different program with same set of files:: structureIsReused:: 2
Info 608  [15:17:52.665] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 609  [15:17:52.712] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 89 structureChanged: false Elapsed: 47.176595002412796ms
Info 610  [15:17:52.713] Different program with same set of files:: structureIsReused:: 2
Info 611  [15:17:52.859] getCompletionData: Get current token: 0.022689014673233032
Info 612  [15:17:52.859] getCompletionData: Is inside comment: 0.005058020353317261
Info 613  [15:17:52.859] getCompletionData: Get previous token 1: 0.04956701397895813
Info 614  [15:17:52.859] getCompletionData: Get previous token 2: 0.046534985303878784
Info 615  [15:17:52.859] getCompletionsAtPosition: isCompletionListBlocker: 0.004314005374908447
Info 616  [15:17:52.864] getCompletionData: Semantic work: 4.35045400261879
Info 617  [15:17:52.913] getCompletionData: Get current token: 0.022450000047683716
Info 618  [15:17:52.913] getCompletionData: Is inside comment: 0.006250977516174316
Info 619  [15:17:52.913] getCompletionData: Get previous token 1: 0.048548996448516846
Info 620  [15:17:52.914] getCompletionData: Get previous token 2: 0.04263800382614136
Info 621  [15:17:52.914] getCompletionsAtPosition: isCompletionListBlocker: 0.009227007627487183
Info 622  [15:17:52.916] getCompletionData: Semantic work: 1.9801470041275024
Info 623  [15:17:53.489] getCompletionData: Get current token: 0.020451009273529053
Info 624  [15:17:53.489] getCompletionData: Is inside comment: 0.005208998918533325
Info 625  [15:17:53.489] getCompletionData: Get previous token 1: 0.044900983572006226
Info 626  [15:17:53.489] getCompletionData: Get previous token 2: 0.04425898194313049
Info 627  [15:17:53.489] getCompletionsAtPosition: isCompletionListBlocker: 0.00457000732421875
Info 628  [15:17:53.490] getCompletionData: Semantic work: 0.5352370142936707
Info 629  [15:17:53.490] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 630  [15:17:53.524] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 90 structureChanged: false Elapsed: 33.87327399849892ms
Info 631  [15:17:53.524] Different program with same set of files:: structureIsReused:: 2
Info 632  [15:17:53.672] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 633  [15:17:53.725] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 91 structureChanged: false Elapsed: 52.017468988895416ms
Info 634  [15:17:53.725] Different program with same set of files:: structureIsReused:: 2
Info 635  [15:17:53.819] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 636  [15:17:53.860] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 92 structureChanged: false Elapsed: 41.034685999155045ms
Info 637  [15:17:53.860] Different program with same set of files:: structureIsReused:: 2
Info 638  [15:17:53.955] getCompletionData: Get current token: 0.02266600728034973
Info 639  [15:17:53.955] getCompletionData: Is inside comment: 0.005163013935089111
Info 640  [15:17:53.955] getCompletionData: Get previous token 1: 0.0449100136756897
Info 641  [15:17:53.955] getCompletionData: Get previous token 2: 0.04157799482345581
Info 642  [15:17:53.955] getCompletionsAtPosition: isCompletionListBlocker: 0.004099011421203613
Info 643  [15:17:53.956] getCompletionData: Semantic work: 0.7876749932765961
Info 644  [15:17:54.158] getCompletionData: Get current token: 0.02549600601196289
Info 645  [15:17:54.158] getCompletionData: Is inside comment: 0.009959995746612549
Info 646  [15:17:54.158] getCompletionData: Get previous token 1: 0.06119799613952637
Info 647  [15:17:54.159] getCompletionData: Get previous token 2: 0.04902699589729309
Info 648  [15:17:54.159] getCompletionsAtPosition: isCompletionListBlocker: 0.0059059858322143555
Info 649  [15:17:54.160] getCompletionData: Semantic work: 0.8413649797439575
Info 650  [15:17:54.160] getCompletionData: Get current token: 0.029054999351501465
Info 651  [15:17:54.160] getCompletionData: Is inside comment: 0.00898599624633789
Info 652  [15:17:54.160] getCompletionData: Get previous token 1: 0.05851399898529053
Info 653  [15:17:54.160] getCompletionData: Get previous token 2: 0.10306999087333679
Info 654  [15:17:54.161] getCompletionsAtPosition: isCompletionListBlocker: 0.0066699981689453125
Info 655  [15:17:54.161] getCompletionData: Semantic work: 0.6538159847259521
Info 656  [15:21:40.352] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 657  [15:21:40.426] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 93 structureChanged: false Elapsed: 73.59282100200653ms
Info 658  [15:21:40.427] Different program with same set of files:: structureIsReused:: 2
Info 659  [15:21:41.031] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 660  [15:21:41.086] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 94 structureChanged: false Elapsed: 54.09289500117302ms
Info 661  [15:21:41.086] Different program with same set of files:: structureIsReused:: 2
Info 662  [15:21:41.261] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 663  [15:21:41.315] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 95 structureChanged: false Elapsed: 53.44219598174095ms
Info 664  [15:21:41.315] Different program with same set of files:: structureIsReused:: 2
Info 665  [15:21:41.831] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 666  [15:21:41.895] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 96 structureChanged: false Elapsed: 64.02637901902199ms
Info 667  [15:21:41.895] Different program with same set of files:: structureIsReused:: 2
Info 668  [15:21:41.898] getCompletionData: Get current token: 0.02959299087524414
Info 669  [15:21:41.898] getCompletionData: Is inside comment: 0.1171489953994751
Info 670  [15:21:41.898] getCompletionData: Get previous token 1: 0.09569999575614929
Info 671  [15:21:41.899] getCompletionData: Get previous token 2: 0.1493910253047943
Info 672  [15:21:41.899] getCompletionsAtPosition: isCompletionListBlocker: 0.17274099588394165
Info 673  [15:21:41.912] getSymbolsFromOtherSourceFileExports: Using cached list
Info 674  [15:21:41.950] getCompletionData: Semantic work: 51.187967985868454
Info 675  [15:21:41.959] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 8.608343005180359
Info 676  [15:21:42.204] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 677  [15:21:42.221] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 97 structureChanged: false Elapsed: 17.47776499390602ms
Info 678  [15:21:42.221] Different program with same set of files:: structureIsReused:: 2
Info 679  [15:21:42.347] getCompletionData: Get current token: 0.014288991689682007
Info 680  [15:21:42.347] getCompletionData: Is inside comment: 0.045260995626449585
Info 681  [15:21:42.347] getCompletionData: Get previous token 1: 0.05054697394371033
Info 682  [15:21:42.347] getCompletionsAtPosition: isCompletionListBlocker: 0.006782978773117065
Info 683  [15:21:42.372] getCompletionData: Semantic work: 25.140679985284805
Info 684  [15:21:42.374] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.06007200479507446
Info 685  [15:21:42.919] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 686  [15:21:42.959] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 98 structureChanged: false Elapsed: 39.13196897506714ms
Info 687  [15:21:42.959] Different program with same set of files:: structureIsReused:: 2
Info 688  [15:21:42.960] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 689  [15:21:42.995] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 99 structureChanged: false Elapsed: 35.07531300187111ms
Info 690  [15:21:42.995] Different program with same set of files:: structureIsReused:: 2
Info 691  [15:21:43.368] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 692  [15:21:43.458] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 100 structureChanged: false Elapsed: 89.42252299189568ms
Info 693  [15:21:43.458] Different program with same set of files:: structureIsReused:: 2
Info 694  [15:21:43.590] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 695  [15:21:43.608] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 101 structureChanged: false Elapsed: 17.133761018514633ms
Info 696  [15:21:43.608] Different program with same set of files:: structureIsReused:: 2
Info 697  [15:21:44.145] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 698  [15:21:44.208] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 102 structureChanged: false Elapsed: 62.96011498570442ms
Info 699  [15:21:44.208] Different program with same set of files:: structureIsReused:: 2
Info 700  [15:21:44.655] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 701  [15:21:44.706] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 103 structureChanged: false Elapsed: 50.36217799782753ms
Info 702  [15:21:44.706] Different program with same set of files:: structureIsReused:: 2
Info 703  [15:21:44.711] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 704  [15:21:44.734] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 104 structureChanged: false Elapsed: 22.71383899450302ms
Info 705  [15:21:44.734] Different program with same set of files:: structureIsReused:: 2
Info 706  [15:21:45.387] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 707  [15:21:45.439] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 105 structureChanged: false Elapsed: 50.91022002696991ms
Info 708  [15:21:45.439] Different program with same set of files:: structureIsReused:: 2
Info 709  [15:21:45.814] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 710  [15:21:45.868] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 106 structureChanged: false Elapsed: 53.53372502326965ms
Info 711  [15:21:45.868] Different program with same set of files:: structureIsReused:: 2
Info 712  [15:21:46.674] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 713  [15:21:46.730] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 107 structureChanged: false Elapsed: 55.61078700423241ms
Info 714  [15:21:46.730] Different program with same set of files:: structureIsReused:: 2
Info 715  [15:21:48.689] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 716  [15:21:48.744] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 108 structureChanged: false Elapsed: 55.33027598261833ms
Info 717  [15:21:48.744] Different program with same set of files:: structureIsReused:: 2
Info 718  [15:21:49.349] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 719  [15:21:49.404] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 109 structureChanged: false Elapsed: 55.24999698996544ms
Info 720  [15:21:49.404] Different program with same set of files:: structureIsReused:: 2
Info 721  [15:21:50.155] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 722  [15:21:50.200] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 110 structureChanged: false Elapsed: 44.426759988069534ms
Info 723  [15:21:50.200] Different program with same set of files:: structureIsReused:: 2
Info 724  [15:21:50.201] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 725  [15:21:50.223] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 111 structureChanged: false Elapsed: 22.21773698925972ms
Info 726  [15:21:50.223] Different program with same set of files:: structureIsReused:: 2
Info 727  [15:21:50.362] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 728  [15:21:50.393] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 112 structureChanged: false Elapsed: 30.96228900551796ms
Info 729  [15:21:50.393] Different program with same set of files:: structureIsReused:: 2
Info 730  [15:21:50.567] getCompletionData: Get current token: 0.03509300947189331
Info 731  [15:21:50.567] getCompletionData: Is inside comment: 0.10449901223182678
Info 732  [15:21:50.567] getCompletionData: Get previous token 1: 0.11490300297737122
Info 733  [15:21:50.567] getCompletionsAtPosition: isCompletionListBlocker: 0.006711006164550781
Info 734  [15:21:50.618] getCompletionData: Semantic work: 50.718131989240646
Info 735  [15:21:50.620] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.06042400002479553
Info 736  [15:21:51.170] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 737  [15:21:51.222] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 113 structureChanged: false Elapsed: 51.44913101196289ms
Info 738  [15:21:51.222] Different program with same set of files:: structureIsReused:: 2
Info 739  [15:21:51.326] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 740  [15:21:51.343] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 114 structureChanged: false Elapsed: 16.78454300761223ms
Info 741  [15:21:51.343] Different program with same set of files:: structureIsReused:: 2
Info 742  [15:21:51.771] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 743  [15:21:51.823] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 115 structureChanged: false Elapsed: 51.756080001592636ms
Info 744  [15:21:51.823] Different program with same set of files:: structureIsReused:: 2
Info 745  [15:21:51.952] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 746  [15:21:51.986] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 116 structureChanged: false Elapsed: 33.82999497652054ms
Info 747  [15:21:51.986] Different program with same set of files:: structureIsReused:: 2
Info 748  [15:21:52.105] getCompletionData: Get current token: 0.01426398754119873
Info 749  [15:21:52.105] getCompletionData: Is inside comment: 0.03260299563407898
Info 750  [15:21:52.105] getCompletionData: Get previous token 1: 0.024674981832504272
Info 751  [15:21:52.105] getCompletionsAtPosition: isCompletionListBlocker: 0.0032349824905395508
Info 752  [15:21:52.129] getCompletionData: Semantic work: 23.740042984485626
Info 753  [15:21:52.132] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 1.1954819858074188
Info 754  [15:21:52.965] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 755  [15:21:53.009] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 117 structureChanged: false Elapsed: 43.72462999820709ms
Info 756  [15:21:53.009] Different program with same set of files:: structureIsReused:: 2
Info 757  [15:21:53.406] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 758  [15:21:53.454] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 118 structureChanged: false Elapsed: 47.80325898528099ms
Info 759  [15:21:53.454] Different program with same set of files:: structureIsReused:: 2
Info 760  [15:21:53.455] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 761  [15:21:53.480] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 119 structureChanged: false Elapsed: 25.241396993398666ms
Info 762  [15:21:53.480] Different program with same set of files:: structureIsReused:: 2
Info 763  [15:21:53.813] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 764  [15:21:53.863] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 120 structureChanged: false Elapsed: 50.093545973300934ms
Info 765  [15:21:53.863] Different program with same set of files:: structureIsReused:: 2
Info 766  [15:21:53.864] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 767  [15:21:53.896] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 121 structureChanged: false Elapsed: 31.89240500330925ms
Info 768  [15:21:53.896] Different program with same set of files:: structureIsReused:: 2
Info 769  [15:21:54.902] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 770  [15:21:54.940] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 122 structureChanged: false Elapsed: 37.326294988393784ms
Info 771  [15:21:54.940] Different program with same set of files:: structureIsReused:: 2
Info 772  [15:21:55.820] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 773  [15:21:55.861] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 123 structureChanged: false Elapsed: 41.09172800183296ms
Info 774  [15:21:55.861] Different program with same set of files:: structureIsReused:: 2
Info 775  [15:21:57.373] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 776  [15:21:57.420] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 124 structureChanged: false Elapsed: 46.82530999183655ms
Info 777  [15:21:57.420] Different program with same set of files:: structureIsReused:: 2
Info 778  [15:21:57.511] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 779  [15:21:57.529] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 125 structureChanged: false Elapsed: 18.662761986255646ms
Info 780  [15:21:57.529] Different program with same set of files:: structureIsReused:: 2
Info 781  [15:21:57.690] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 782  [15:21:57.724] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 126 structureChanged: false Elapsed: 34.23002800345421ms
Info 783  [15:21:57.724] Different program with same set of files:: structureIsReused:: 2
Info 784  [15:21:57.992] getCompletionData: Get current token: 0.020569026470184326
Info 785  [15:21:57.992] getCompletionData: Is inside comment: 0.0073499977588653564
Info 786  [15:21:57.992] getCompletionData: Get previous token 1: 0.048859983682632446
Info 787  [15:21:57.993] getCompletionData: Get previous token 2: 0.04728800058364868
Info 788  [15:21:57.993] getCompletionsAtPosition: isCompletionListBlocker: 0.08389899134635925
Info 789  [15:21:58.007] getSymbolsFromOtherSourceFileExports: Using cached list
Info 790  [15:21:58.132] getCompletionData: Semantic work: 139.20907601714134
Info 791  [15:21:58.155] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 20.07574701309204
Info 792  [15:21:58.273] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 793  [15:21:58.289] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 127 structureChanged: false Elapsed: 15.36481699347496ms
Info 794  [15:21:58.289] Different program with same set of files:: structureIsReused:: 2
Info 795  [15:21:58.289] getCompletionData: Get current token: 0.011991024017333984
Info 796  [15:21:58.289] getCompletionData: Is inside comment: 0.003390014171600342
Info 797  [15:21:58.289] getCompletionData: Get previous token 1: 0.03629201650619507
Info 798  [15:21:58.289] getCompletionData: Get previous token 2: 0.02386900782585144
Info 799  [15:21:58.289] getCompletionsAtPosition: isCompletionListBlocker: 0.004155993461608887
Info 800  [15:21:58.297] getSymbolsFromOtherSourceFileExports: Using cached list
Info 801  [15:21:58.322] getCompletionData: Semantic work: 32.55790600180626
Info 802  [15:21:58.338] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 14.08899998664856
Info 803  [15:22:00.610] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 804  [15:22:00.640] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 128 structureChanged: false Elapsed: 29.652227997779846ms
Info 805  [15:22:00.640] Different program with same set of files:: structureIsReused:: 2
Info 806  [15:22:00.703] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 807  [15:22:00.739] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 129 structureChanged: false Elapsed: 36.240718990564346ms
Info 808  [15:22:00.739] Different program with same set of files:: structureIsReused:: 2
Info 809  [15:22:02.154] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 810  [15:22:02.179] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 130 structureChanged: false Elapsed: 25.280801981687546ms
Info 811  [15:22:02.179] Different program with same set of files:: structureIsReused:: 2
Info 812  [15:22:02.542] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 813  [15:22:02.559] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 131 structureChanged: false Elapsed: 16.86854201555252ms
Info 814  [15:22:02.559] Different program with same set of files:: structureIsReused:: 2
Info 815  [15:22:02.858] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 816  [15:22:02.885] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 132 structureChanged: false Elapsed: 27.19141599535942ms
Info 817  [15:22:02.885] Different program with same set of files:: structureIsReused:: 2
Info 818  [15:22:02.914] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 819  [15:22:02.934] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 133 structureChanged: false Elapsed: 19.852457016706467ms
Info 820  [15:22:02.934] Different program with same set of files:: structureIsReused:: 2
Info 821  [15:22:03.025] getCompletionData: Get current token: 0.02460402250289917
Info 822  [15:22:03.025] getCompletionData: Is inside comment: 0.00667300820350647
Info 823  [15:22:03.025] getCompletionData: Get previous token 1: 0.05702400207519531
Info 824  [15:22:03.025] getCompletionData: Get previous token 2: 0.05320599675178528
Info 825  [15:22:03.025] getCompletionsAtPosition: isCompletionListBlocker: 0.021315008401870728
Info 826  [15:22:03.039] getSymbolsFromOtherSourceFileExports: Using cached list
Info 827  [15:22:03.046] getCompletionData: Semantic work: 21.08007299900055
Info 828  [15:22:03.060] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 13.025433987379074
Info 829  [15:22:03.269] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 830  [15:22:03.298] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 134 structureChanged: false Elapsed: 29.241290003061295ms
Info 831  [15:22:03.299] Different program with same set of files:: structureIsReused:: 2
Info 832  [15:22:03.299] getCompletionData: Get current token: 0.022671997547149658
Info 833  [15:22:03.299] getCompletionData: Is inside comment: 0.005268007516860962
Info 834  [15:22:03.299] getCompletionData: Get previous token 1: 0.06813699007034302
Info 835  [15:22:03.299] getCompletionData: Get previous token 2: 0.04445597529411316
Info 836  [15:22:03.299] getCompletionsAtPosition: isCompletionListBlocker: 0.022564023733139038
Info 837  [15:22:03.321] getSymbolsFromOtherSourceFileExports: Using cached list
Info 838  [15:22:03.344] getCompletionData: Semantic work: 44.35989400744438
Info 839  [15:22:03.353] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 6.735599994659424
Info 840  [15:22:03.357] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 841  [15:22:03.380] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 135 structureChanged: false Elapsed: 23.027817994356155ms
Info 842  [15:22:03.380] Different program with same set of files:: structureIsReused:: 2
Info 843  [15:22:03.381] getCompletionData: Get current token: 0.012820005416870117
Info 844  [15:22:03.381] getCompletionData: Is inside comment: 0.004920989274978638
Info 845  [15:22:03.381] getCompletionData: Get previous token 1: 0.06912001967430115
Info 846  [15:22:03.381] getCompletionData: Get previous token 2: 0.046577006578445435
Info 847  [15:22:03.381] getCompletionsAtPosition: isCompletionListBlocker: 0.016968995332717896
Info 848  [15:22:03.389] getSymbolsFromOtherSourceFileExports: Using cached list
Info 849  [15:22:03.415] getCompletionData: Semantic work: 33.80308699607849
Info 850  [15:22:03.430] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.660266011953354
Info 851  [15:22:03.755] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 852  [15:22:03.775] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 136 structureChanged: false Elapsed: 20.10809600353241ms
Info 853  [15:22:03.775] Different program with same set of files:: structureIsReused:: 2
Info 854  [15:22:04.004] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 855  [15:22:04.033] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 137 structureChanged: false Elapsed: 28.896371990442276ms
Info 856  [15:22:04.033] Different program with same set of files:: structureIsReused:: 2
Info 857  [15:22:04.761] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 858  [15:22:04.799] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 138 structureChanged: false Elapsed: 38.15756598114967ms
Info 859  [15:22:04.799] Different program with same set of files:: structureIsReused:: 2
Info 860  [15:22:04.800] getCompletionData: Get current token: 0.13238999247550964
Info 861  [15:22:04.800] getCompletionData: Is inside comment: 0.06542399525642395
Info 862  [15:22:04.801] getCompletionData: Get previous token 1: 0.15285098552703857
Info 863  [15:22:04.801] getCompletionData: Get previous token 2: 0.049795001745224
Info 864  [15:22:04.801] getCompletionsAtPosition: isCompletionListBlocker: 0.013156980276107788
Info 865  [15:22:04.809] getSymbolsFromOtherSourceFileExports: Recomputing list for details entry
Info 866  [15:22:04.910] forEachExternalModuleToImportFrom: filtered out 0 modules by package.json contents
Info 867  [15:22:04.945] forEachExternalModuleToImportFrom: filtered out 0 modules by package.json contents
Info 868  [15:22:04.946] forEachExternalModuleToImportFrom autoImportProvider: 35.498172998428345
Info 869  [15:22:04.946] getSymbolsFromOtherSourceFileExports: 137.6829009950161
Info 870  [15:22:05.040] getCompletionData: Semantic work: 239.42560097575188
Info 871  [15:22:05.049] getCompletionData: Get current token: 0.07033500075340271
Info 872  [15:22:05.049] getCompletionData: Is inside comment: 0.018943995237350464
Info 873  [15:22:05.049] getCompletionData: Get previous token 1: 0.05404701828956604
Info 874  [15:22:05.049] getCompletionData: Get previous token 2: 0.042378008365631104
Info 875  [15:22:05.049] getCompletionsAtPosition: isCompletionListBlocker: 0.015504002571105957
Info 876  [15:22:05.055] getSymbolsFromOtherSourceFileExports: Recomputing list for details entry
Info 877  [15:22:05.115] forEachExternalModuleToImportFrom: filtered out 0 modules by package.json contents
Info 878  [15:22:05.137] forEachExternalModuleToImportFrom: filtered out 0 modules by package.json contents
Info 879  [15:22:05.137] forEachExternalModuleToImportFrom autoImportProvider: 21.78915399312973
Info 880  [15:22:05.138] getSymbolsFromOtherSourceFileExports: 82.83532699942589
Info 881  [15:22:05.144] getCompletionData: Semantic work: 94.7807539999485
Info 882  [15:22:05.735] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 883  [15:22:05.763] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 139 structureChanged: false Elapsed: 28.16600301861763ms
Info 884  [15:22:05.763] Different program with same set of files:: structureIsReused:: 2
Info 885  [15:22:06.399] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 886  [15:22:06.436] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 140 structureChanged: false Elapsed: 36.48726999759674ms
Info 887  [15:22:06.436] Different program with same set of files:: structureIsReused:: 2
Info 888  [15:22:06.513] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 889  [15:22:06.543] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 141 structureChanged: false Elapsed: 29.071900993585587ms
Info 890  [15:22:06.543] Different program with same set of files:: structureIsReused:: 2
Info 891  [15:22:06.704] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 892  [15:22:06.731] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 142 structureChanged: false Elapsed: 27.155478984117508ms
Info 893  [15:22:06.731] Different program with same set of files:: structureIsReused:: 2
Info 894  [15:22:06.951] getCompletionData: Get current token: 0.030010998249053955
Info 895  [15:22:06.951] getCompletionData: Is inside comment: 0.008019983768463135
Info 896  [15:22:06.951] getCompletionData: Get previous token 1: 0.057760000228881836
Info 897  [15:22:06.951] getCompletionData: Get previous token 2: 0.05660399794578552
Info 898  [15:22:06.951] getCompletionsAtPosition: isCompletionListBlocker: 0.00782698392868042
Info 899  [15:22:06.967] getSymbolsFromOtherSourceFileExports: Using cached list
Info 900  [15:22:07.007] getCompletionData: Semantic work: 55.94133099913597
Info 901  [15:22:07.014] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 7.2148759961128235
Info 902  [15:22:07.183] getCompletionData: Get current token: 0.026055991649627686
Info 903  [15:22:07.183] getCompletionData: Is inside comment: 0.008897006511688232
Info 904  [15:22:07.183] getCompletionData: Get previous token 1: 0.05643400549888611
Info 905  [15:22:07.183] getCompletionData: Get previous token 2: 0.053380995988845825
Info 906  [15:22:07.183] getCompletionsAtPosition: isCompletionListBlocker: 0.00802302360534668
Info 907  [15:22:07.203] getSymbolsFromOtherSourceFileExports: Using cached list
Info 908  [15:22:07.208] getCompletionData: Semantic work: 24.207563012838364
Info 909  [15:22:07.215] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 7.056736022233963
Info 910  [15:22:07.220] getCompletionData: Get current token: 0.01580500602722168
Info 911  [15:22:07.220] getCompletionData: Is inside comment: 0.007214993238449097
Info 912  [15:22:07.220] getCompletionData: Get previous token 1: 0.059421002864837646
Info 913  [15:22:07.220] getCompletionData: Get previous token 2: 0.05593898892402649
Info 914  [15:22:07.220] getCompletionsAtPosition: isCompletionListBlocker: 0.00836801528930664
Info 915  [15:22:07.227] getSymbolsFromOtherSourceFileExports: Using cached list
Info 916  [15:22:07.230] getCompletionData: Semantic work: 9.974965989589691
Info 917  [15:22:07.236] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.867460012435913
Info 918  [15:22:07.242] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 919  [15:22:07.263] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 143 structureChanged: false Elapsed: 20.375664979219437ms
Info 920  [15:22:07.263] Different program with same set of files:: structureIsReused:: 2
Info 921  [15:22:07.263] getCompletionData: Get current token: 0.015603989362716675
Info 922  [15:22:07.263] getCompletionData: Is inside comment: 0.003984987735748291
Info 923  [15:22:07.263] getCompletionData: Get previous token 1: 0.06522202491760254
Info 924  [15:22:07.263] getCompletionData: Get previous token 2: 0.03082898259162903
Info 925  [15:22:07.264] getCompletionsAtPosition: isCompletionListBlocker: 0.0034900009632110596
Info 926  [15:22:07.280] getSymbolsFromOtherSourceFileExports: Using cached list
Info 927  [15:22:07.302] getCompletionData: Semantic work: 38.68779602646828
Info 928  [15:22:07.307] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 4.81480199098587
Info 929  [15:22:07.319] getCompletionData: Get current token: 0.023482978343963623
Info 930  [15:22:07.319] getCompletionData: Is inside comment: 0.005539000034332275
Info 931  [15:22:07.319] getCompletionData: Get previous token 1: 0.050868988037109375
Info 932  [15:22:07.319] getCompletionData: Get previous token 2: 0.04726099967956543
Info 933  [15:22:07.319] getCompletionsAtPosition: isCompletionListBlocker: 0.003836989402770996
Info 934  [15:22:07.331] getSymbolsFromOtherSourceFileExports: Using cached list
Info 935  [15:22:07.334] getCompletionData: Semantic work: 14.608401000499725
Info 936  [15:22:07.341] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 7.609358012676239
Info 937  [15:22:07.346] getCompletionData: Get current token: 0.02280101180076599
Info 938  [15:22:07.346] getCompletionData: Is inside comment: 0.005632996559143066
Info 939  [15:22:07.346] getCompletionData: Get previous token 1: 0.048395007848739624
Info 940  [15:22:07.346] getCompletionData: Get previous token 2: 0.042124003171920776
Info 941  [15:22:07.346] getCompletionsAtPosition: isCompletionListBlocker: 0.004430979490280151
Info 942  [15:22:07.353] getSymbolsFromOtherSourceFileExports: Using cached list
Info 943  [15:22:07.356] getCompletionData: Semantic work: 9.088633000850677
Info 944  [15:22:07.363] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 6.96900999546051
Info 945  [15:22:07.369] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 946  [15:22:07.395] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 144 structureChanged: false Elapsed: 25.843617022037506ms
Info 947  [15:22:07.396] Different program with same set of files:: structureIsReused:: 2
Info 948  [15:22:07.474] getCompletionData: Get current token: 0.014928996562957764
Info 949  [15:22:07.475] getCompletionData: Is inside comment: 0.006185978651046753
Info 950  [15:22:07.475] getCompletionData: Get previous token 1: 0.06151202321052551
Info 951  [15:22:07.475] getCompletionsAtPosition: isCompletionListBlocker: 0.004394024610519409
Info 952  [15:22:07.501] getCompletionData: Semantic work: 26.38730102777481
Info 953  [15:22:07.502] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.4167289733886719
Info 954  [15:22:08.979] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 955  [15:22:09.019] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 145 structureChanged: false Elapsed: 39.902233988046646ms
Info 956  [15:22:09.019] Different program with same set of files:: structureIsReused:: 2
Info 957  [15:22:09.020] getCompletionData: Get current token: 0.07371601462364197
Info 958  [15:22:09.020] getCompletionData: Is inside comment: 0.01691901683807373
Info 959  [15:22:09.020] getCompletionData: Get previous token 1: 0.0635170042514801
Info 960  [15:22:09.020] getCompletionsAtPosition: isCompletionListBlocker: 0.0038730204105377197
Info 961  [15:22:09.054] getCompletionData: Semantic work: 33.634463995695114
Info 962  [15:22:09.092] getCompletionData: Get current token: 0.052392005920410156
Info 963  [15:22:09.092] getCompletionData: Is inside comment: 0.009068995714187622
Info 964  [15:22:09.092] getCompletionData: Get previous token 1: 0.051715999841690063
Info 965  [15:22:09.093] getCompletionsAtPosition: isCompletionListBlocker: 0.005017012357711792
Info 966  [15:22:09.093] getCompletionData: Semantic work: 0.2874549925327301
Info 967  [15:22:10.069] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 968  [15:22:10.106] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 146 structureChanged: false Elapsed: 37.10199901461601ms
Info 969  [15:22:10.106] Different program with same set of files:: structureIsReused:: 2
Info 970  [15:22:10.310] getCompletionData: Get current token: 0.020693987607955933
Info 971  [15:22:10.310] getCompletionData: Is inside comment: 0.005850017070770264
Info 972  [15:22:10.310] getCompletionData: Get previous token 1: 0.050559014081954956
Info 973  [15:22:10.310] getCompletionsAtPosition: isCompletionListBlocker: 0.004413992166519165
Info 974  [15:22:10.334] getCompletionData: Semantic work: 23.939179986715317
Info 975  [15:22:10.335] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 0.03227299451828003
Info 976  [15:22:10.707] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 977  [15:22:10.740] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 147 structureChanged: false Elapsed: 32.60010400414467ms
Info 978  [15:22:10.740] Different program with same set of files:: structureIsReused:: 2
Info 979  [15:22:10.814] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 980  [15:22:10.915] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 148 structureChanged: false Elapsed: 100.3628160059452ms
Info 981  [15:22:10.915] Different program with same set of files:: structureIsReused:: 2
Info 982  [15:22:11.027] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 983  [15:22:11.072] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 149 structureChanged: false Elapsed: 44.322463005781174ms
Info 984  [15:22:11.072] Different program with same set of files:: structureIsReused:: 2
Info 985  [15:22:11.132] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 986  [15:22:11.173] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 150 structureChanged: false Elapsed: 40.816346019506454ms
Info 987  [15:22:11.173] Different program with same set of files:: structureIsReused:: 2
Info 988  [15:22:11.204] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 989  [15:22:11.226] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 151 structureChanged: false Elapsed: 21.96068200469017ms
Info 990  [15:22:11.226] Different program with same set of files:: structureIsReused:: 2
Info 991  [15:22:11.957] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 992  [15:22:11.995] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 152 structureChanged: false Elapsed: 37.469906002283096ms
Info 993  [15:22:11.995] Different program with same set of files:: structureIsReused:: 2
Info 994  [15:22:12.149] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 995  [15:22:12.167] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 153 structureChanged: false Elapsed: 17.6200550198555ms
Info 996  [15:22:12.167] Different program with same set of files:: structureIsReused:: 2
Info 997  [15:22:13.180] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 998  [15:22:13.202] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 154 structureChanged: false Elapsed: 22.26221400499344ms
Info 999  [15:22:13.202] Different program with same set of files:: structureIsReused:: 2
Info 1000 [15:22:13.237] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1001 [15:22:13.261] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 155 structureChanged: false Elapsed: 23.53753200173378ms
Info 1002 [15:22:13.261] Different program with same set of files:: structureIsReused:: 2
Info 1003 [15:22:13.289] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1004 [15:22:13.311] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 156 structureChanged: false Elapsed: 22.1737300157547ms
Info 1005 [15:22:13.311] Different program with same set of files:: structureIsReused:: 2
Info 1006 [15:22:13.382] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1007 [15:22:13.403] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 157 structureChanged: false Elapsed: 20.511163026094437ms
Info 1008 [15:22:13.403] Different program with same set of files:: structureIsReused:: 2
Info 1009 [15:22:13.793] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1010 [15:22:13.817] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 158 structureChanged: false Elapsed: 23.88968300819397ms
Info 1011 [15:22:13.817] Different program with same set of files:: structureIsReused:: 2
Info 1012 [15:22:13.993] getCompletionData: Get current token: 0.021591991186141968
Info 1013 [15:22:13.993] getCompletionData: Is inside comment: 0.005768001079559326
Info 1014 [15:22:13.993] getCompletionData: Get previous token 1: 0.053185999393463135
Info 1015 [15:22:13.993] getCompletionsAtPosition: isCompletionListBlocker: 0.005163997411727905
Info 1016 [15:22:13.994] getCompletionData: Semantic work: 0.9014970064163208
Info 1017 [15:22:13.996] getCompletionData: Get current token: 0.01251402497291565
Info 1018 [15:22:13.996] getCompletionData: Is inside comment: 0.003621011972427368
Info 1019 [15:22:13.996] getCompletionData: Get previous token 1: 0.03069499135017395
Info 1020 [15:22:13.996] getCompletionsAtPosition: isCompletionListBlocker: 0.0038049817085266113
Info 1021 [15:22:13.997] getCompletionData: Semantic work: 0.9265519976615906
Info 1022 [15:22:14.001] getCompletionData: Get current token: 0.07208901643753052
Info 1023 [15:22:14.001] getCompletionData: Is inside comment: 0.04079499840736389
Info 1024 [15:22:14.001] getCompletionData: Get previous token 1: 0.20929598808288574
Info 1025 [15:22:14.002] getCompletionsAtPosition: isCompletionListBlocker: 0.020436018705368042
Info 1026 [15:22:14.003] getCompletionData: Semantic work: 1.3901279866695404
Info 1027 [15:22:14.248] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1028 [15:22:14.280] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 159 structureChanged: false Elapsed: 32.460554987192154ms
Info 1029 [15:22:14.280] Different program with same set of files:: structureIsReused:: 2
Info 1030 [15:22:14.281] getCompletionData: Get current token: 0.013065993785858154
Info 1031 [15:22:14.281] getCompletionData: Is inside comment: 0.0037190020084381104
Info 1032 [15:22:14.281] getCompletionData: Get previous token 1: 0.061399996280670166
Info 1033 [15:22:14.281] getCompletionData: Get previous token 2: 0.02935001254081726
Info 1034 [15:22:14.281] getCompletionsAtPosition: isCompletionListBlocker: 0.0035440027713775635
Info 1035 [15:22:14.308] getCompletionData: Semantic work: 27.416397988796234
Info 1036 [15:22:14.327] getCompletionData: Get current token: 0.04363200068473816
Info 1037 [15:22:14.327] getCompletionData: Is inside comment: 0.053681015968322754
Info 1038 [15:22:14.327] getCompletionData: Get previous token 1: 0.17911100387573242
Info 1039 [15:22:14.328] getCompletionData: Get previous token 2: 0.06591001152992249
Info 1040 [15:22:14.328] getCompletionsAtPosition: isCompletionListBlocker: 0.004958003759384155
Info 1041 [15:22:14.329] getCompletionData: Semantic work: 0.8186669945716858
Info 1042 [15:22:14.330] getCompletionData: Get current token: 0.013478994369506836
Info 1043 [15:22:14.330] getCompletionData: Is inside comment: 0.005423009395599365
Info 1044 [15:22:14.330] getCompletionData: Get previous token 1: 0.049410998821258545
Info 1045 [15:22:14.330] getCompletionData: Get previous token 2: 0.0472320020198822
Info 1046 [15:22:14.330] getCompletionsAtPosition: isCompletionListBlocker: 0.0047119855880737305
Info 1047 [15:22:14.331] getCompletionData: Semantic work: 0.9411559998989105
Info 1048 [15:22:14.387] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1049 [15:22:14.414] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 160 structureChanged: false Elapsed: 26.66056799888611ms
Info 1050 [15:22:14.414] Different program with same set of files:: structureIsReused:: 2
Info 1051 [15:22:14.414] getCompletionData: Get current token: 0.021531015634536743
Info 1052 [15:22:14.414] getCompletionData: Is inside comment: 0.0059500038623809814
Info 1053 [15:22:14.414] getCompletionData: Get previous token 1: 0.07393598556518555
Info 1054 [15:22:14.414] getCompletionData: Get previous token 2: 0.04510501027107239
Info 1055 [15:22:14.414] getCompletionsAtPosition: isCompletionListBlocker: 0.004431992769241333
Info 1056 [15:22:14.447] getCompletionData: Semantic work: 32.05830800533295
Info 1057 [15:22:14.448] getCompletionData: Get current token: 0.012933015823364258
Info 1058 [15:22:14.448] getCompletionData: Is inside comment: 0.003376007080078125
Info 1059 [15:22:14.448] getCompletionData: Get previous token 1: 0.028392016887664795
Info 1060 [15:22:14.448] getCompletionData: Get previous token 2: 0.037145018577575684
Info 1061 [15:22:14.448] getCompletionsAtPosition: isCompletionListBlocker: 0.0033999979496002197
Info 1062 [15:22:14.449] getCompletionData: Semantic work: 0.6506850123405457
Info 1063 [15:22:14.450] getCompletionData: Get current token: 0.011638998985290527
Info 1064 [15:22:14.450] getCompletionData: Is inside comment: 0.0035920143127441406
Info 1065 [15:22:14.450] getCompletionData: Get previous token 1: 0.030862003564834595
Info 1066 [15:22:14.450] getCompletionData: Get previous token 2: 0.025019973516464233
Info 1067 [15:22:14.450] getCompletionsAtPosition: isCompletionListBlocker: 0.0034009814262390137
Info 1068 [15:22:14.451] getCompletionData: Semantic work: 0.6091630160808563
Info 1069 [15:22:14.537] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1070 [15:22:14.559] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 161 structureChanged: false Elapsed: 21.84984600543976ms
Info 1071 [15:22:14.559] Different program with same set of files:: structureIsReused:: 2
Info 1072 [15:22:14.560] getCompletionData: Get current token: 0.0209139883518219
Info 1073 [15:22:14.560] getCompletionData: Is inside comment: 0.007026016712188721
Info 1074 [15:22:14.560] getCompletionData: Get previous token 1: 0.08605900406837463
Info 1075 [15:22:14.561] getCompletionData: Get previous token 2: 0.047666996717453
Info 1076 [15:22:14.561] getCompletionsAtPosition: isCompletionListBlocker: 0.005535989999771118
Info 1077 [15:22:14.602] getCompletionData: Semantic work: 40.911957025527954
Info 1078 [15:22:14.603] getCompletionData: Get current token: 0.02237600088119507
Info 1079 [15:22:14.603] getCompletionData: Is inside comment: 0.006210982799530029
Info 1080 [15:22:14.603] getCompletionData: Get previous token 1: 0.05035701394081116
Info 1081 [15:22:14.603] getCompletionData: Get previous token 2: 0.05029499530792236
Info 1082 [15:22:14.603] getCompletionsAtPosition: isCompletionListBlocker: 0.006873995065689087
Info 1083 [15:22:14.604] getCompletionData: Semantic work: 1.0588780045509338
Info 1084 [15:22:14.605] getCompletionData: Get current token: 0.02105298638343811
Info 1085 [15:22:14.605] getCompletionData: Is inside comment: 0.005630999803543091
Info 1086 [15:22:14.605] getCompletionData: Get previous token 1: 0.04682600498199463
Info 1087 [15:22:14.605] getCompletionData: Get previous token 2: 0.04272899031639099
Info 1088 [15:22:14.605] getCompletionsAtPosition: isCompletionListBlocker: 0.008332997560501099
Info 1089 [15:22:14.606] getCompletionData: Semantic work: 1.0254319906234741
Info 1090 [15:22:14.608] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1091 [15:22:14.633] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 162 structureChanged: false Elapsed: 25.043118983507156ms
Info 1092 [15:22:14.633] Different program with same set of files:: structureIsReused:: 2
Info 1093 [15:22:14.827] getCompletionData: Get current token: 0.011853009462356567
Info 1094 [15:22:14.827] getCompletionData: Is inside comment: 0.005843013525009155
Info 1095 [15:22:14.827] getCompletionData: Get previous token 1: 0.050275981426239014
Info 1096 [15:22:14.827] getCompletionData: Get previous token 2: 0.04839301109313965
Info 1097 [15:22:14.827] getCompletionsAtPosition: isCompletionListBlocker: 0.004155009984970093
Info 1098 [15:22:14.864] getCompletionData: Semantic work: 36.99362298846245
Info 1099 [15:22:14.968] getCompletionData: Get current token: 0.010791003704071045
Info 1100 [15:22:14.968] getCompletionData: Is inside comment: 0.004816025495529175
Info 1101 [15:22:14.968] getCompletionData: Get previous token 1: 0.03993901610374451
Info 1102 [15:22:14.968] getCompletionData: Get previous token 2: 0.046068012714385986
Info 1103 [15:22:14.968] getCompletionsAtPosition: isCompletionListBlocker: 0.0038969814777374268
Info 1104 [15:22:14.969] getCompletionData: Semantic work: 0.8269239962100983
Info 1105 [15:22:14.970] getCompletionData: Get current token: 0.015544980764389038
Info 1106 [15:22:14.970] getCompletionData: Is inside comment: 0.0068939924240112305
Info 1107 [15:22:14.971] getCompletionData: Get previous token 1: 0.043974995613098145
Info 1108 [15:22:14.971] getCompletionData: Get previous token 2: 0.04006999731063843
Info 1109 [15:22:14.971] getCompletionsAtPosition: isCompletionListBlocker: 0.0040149986743927
Info 1110 [15:22:14.972] getCompletionData: Semantic work: 0.8820819854736328
Info 1111 [15:22:15.720] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1112 [15:22:15.746] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 163 structureChanged: false Elapsed: 26.12140601873398ms
Info 1113 [15:22:15.746] Different program with same set of files:: structureIsReused:: 2
Info 1114 [15:22:16.538] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1115 [15:22:16.560] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 164 structureChanged: false Elapsed: 21.986308991909027ms
Info 1116 [15:22:16.560] Different program with same set of files:: structureIsReused:: 2
Info 1117 [15:22:16.561] getCompletionData: Get current token: 0.0124950110912323
Info 1118 [15:22:16.561] getCompletionData: Is inside comment: 0.004788994789123535
Info 1119 [15:22:16.561] getCompletionData: Get previous token 1: 0.053391993045806885
Info 1120 [15:22:16.561] getCompletionData: Get previous token 2: 0.025953978300094604
Info 1121 [15:22:16.561] getCompletionsAtPosition: isCompletionListBlocker: 0.005299001932144165
Info 1122 [15:22:16.573] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1123 [15:22:16.607] getCompletionData: Semantic work: 45.925644010305405
Info 1124 [15:22:16.621] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 7.717923998832703
Info 1125 [15:22:17.016] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1126 [15:22:17.040] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 165 structureChanged: false Elapsed: 23.945461004972458ms
Info 1127 [15:22:17.040] Different program with same set of files:: structureIsReused:: 2
Info 1128 [15:22:17.041] getCompletionData: Get current token: 0.02004799246788025
Info 1129 [15:22:17.041] getCompletionData: Is inside comment: 0.005719006061553955
Info 1130 [15:22:17.041] getCompletionData: Get previous token 1: 0.06860700249671936
Info 1131 [15:22:17.041] getCompletionData: Get previous token 2: 0.04680502414703369
Info 1132 [15:22:17.041] getCompletionsAtPosition: isCompletionListBlocker: 0.006029993295669556
Info 1133 [15:22:17.050] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1134 [15:22:17.074] getCompletionData: Semantic work: 33.15428200364113
Info 1135 [15:22:17.091] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.170327007770538
Info 1136 [15:22:17.100] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1137 [15:22:17.121] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 166 structureChanged: false Elapsed: 21.058942019939423ms
Info 1138 [15:22:17.121] Different program with same set of files:: structureIsReused:: 2
Info 1139 [15:22:17.121] getCompletionData: Get current token: 0.013211995363235474
Info 1140 [15:22:17.122] getCompletionData: Is inside comment: 0.0051850080490112305
Info 1141 [15:22:17.122] getCompletionData: Get previous token 1: 0.06571999192237854
Info 1142 [15:22:17.122] getCompletionData: Get previous token 2: 0.044683992862701416
Info 1143 [15:22:17.122] getCompletionsAtPosition: isCompletionListBlocker: 0.005430996417999268
Info 1144 [15:22:17.134] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1145 [15:22:17.162] getCompletionData: Semantic work: 39.979409992694855
Info 1146 [15:22:17.171] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 4.776701003313065
Info 1147 [15:24:24.746] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1148 [15:24:24.790] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 167 structureChanged: false Elapsed: 43.739762008190155ms
Info 1149 [15:24:24.790] Different program with same set of files:: structureIsReused:: 2
Info 1150 [15:24:33.321] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1151 [15:24:33.381] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 168 structureChanged: false Elapsed: 59.93978098034859ms
Info 1152 [15:24:33.381] Different program with same set of files:: structureIsReused:: 2
Info 1153 [15:24:35.352] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1154 [15:24:35.423] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 169 structureChanged: false Elapsed: 70.54636600613594ms
Info 1155 [15:24:35.423] Different program with same set of files:: structureIsReused:: 2
Info 1156 [15:24:35.543] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1157 [15:24:35.566] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 170 structureChanged: false Elapsed: 22.773034989833832ms
Info 1158 [15:24:35.566] Different program with same set of files:: structureIsReused:: 2
Info 1159 [15:24:35.860] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1160 [15:24:35.898] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 171 structureChanged: false Elapsed: 37.29212999343872ms
Info 1161 [15:24:35.898] Different program with same set of files:: structureIsReused:: 2
Info 1162 [15:24:36.544] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1163 [15:24:36.652] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 172 structureChanged: false Elapsed: 108.23258200287819ms
Info 1164 [15:24:36.652] Different program with same set of files:: structureIsReused:: 2
Info 1165 [15:24:36.784] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1166 [15:24:36.801] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 173 structureChanged: false Elapsed: 16.356104016304016ms
Info 1167 [15:24:36.801] Different program with same set of files:: structureIsReused:: 2
Info 1168 [15:24:37.403] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1169 [15:24:37.453] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 174 structureChanged: false Elapsed: 49.632849991321564ms
Info 1170 [15:24:37.453] Different program with same set of files:: structureIsReused:: 2
Info 1171 [15:25:25.660] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1172 [15:25:25.681] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 175 structureChanged: false Elapsed: 20.898371994495392ms
Info 1173 [15:25:25.681] Different program with same set of files:: structureIsReused:: 2
Info 1174 [15:25:26.356] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1175 [15:25:26.376] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 176 structureChanged: false Elapsed: 19.442793995141983ms
Info 1176 [15:25:26.376] Different program with same set of files:: structureIsReused:: 2
Info 1177 [15:25:27.444] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1178 [15:25:27.474] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 177 structureChanged: false Elapsed: 29.892794996500015ms
Info 1179 [15:25:27.474] Different program with same set of files:: structureIsReused:: 2
Info 1180 [15:25:27.477] getCompletionData: Get current token: 0.03395301103591919
Info 1181 [15:25:27.477] getCompletionData: Is inside comment: 0.06865200400352478
Info 1182 [15:25:27.477] getCompletionData: Get previous token 1: 0.045694977045059204
Info 1183 [15:25:27.477] getCompletionsAtPosition: isCompletionListBlocker: 0.19460198283195496
Info 1184 [15:25:27.478] getCompletionData: Semantic work: 0.9373660087585449
Info 1185 [15:25:27.485] getCompletionData: Get current token: 0.043860018253326416
Info 1186 [15:25:27.485] getCompletionData: Is inside comment: 0.13441899418830872
Info 1187 [15:25:27.486] getCompletionData: Get previous token 1: 0.11845499277114868
Info 1188 [15:25:27.486] getCompletionsAtPosition: isCompletionListBlocker: 0.003729015588760376
Info 1189 [15:25:27.486] getCompletionData: Semantic work: 0.3074679970741272
Info 1190 [15:25:27.607] getCompletionData: Get current token: 0.01482999324798584
Info 1191 [15:25:27.607] getCompletionData: Is inside comment: 0.07301497459411621
Info 1192 [15:25:27.607] getCompletionData: Get previous token 1: 0.05638599395751953
Info 1193 [15:25:27.607] getCompletionsAtPosition: isCompletionListBlocker: 0.00903502106666565
Info 1194 [15:25:27.607] getCompletionData: Semantic work: 0.18894699215888977
Info 1195 [15:25:27.857] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1196 [15:25:27.896] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 178 structureChanged: false Elapsed: 38.99831199645996ms
Info 1197 [15:25:27.896] Different program with same set of files:: structureIsReused:: 2
Info 1198 [15:25:27.897] getCompletionData: Get current token: 0.04545101523399353
Info 1199 [15:25:27.898] getCompletionData: Is inside comment: 0.15935099124908447
Info 1200 [15:25:27.898] getCompletionData: Get previous token 1: 0.10988599061965942
Info 1201 [15:25:27.898] getCompletionsAtPosition: isCompletionListBlocker: 0.28904199600219727
Info 1202 [15:25:27.924] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1203 [15:25:27.985] getCompletionData: Semantic work: 86.67650499939919
Info 1204 [15:25:28.007] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 22.119568020105362
Info 1205 [15:25:28.536] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1206 [15:25:28.555] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 179 structureChanged: false Elapsed: 18.472205996513367ms
Info 1207 [15:25:28.555] Different program with same set of files:: structureIsReused:: 2
Info 1208 [15:25:29.232] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1209 [15:25:29.256] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 180 structureChanged: false Elapsed: 24.78855401277542ms
Info 1210 [15:25:29.257] Different program with same set of files:: structureIsReused:: 2
Info 1211 [15:25:29.923] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1212 [15:25:29.971] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 181 structureChanged: false Elapsed: 48.054980993270874ms
Info 1213 [15:25:29.971] Different program with same set of files:: structureIsReused:: 2
Info 1214 [15:25:29.972] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1215 [15:25:30.000] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 182 structureChanged: false Elapsed: 28.085031002759933ms
Info 1216 [15:25:30.000] Different program with same set of files:: structureIsReused:: 2
Info 1217 [15:25:31.422] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1218 [15:25:31.461] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 183 structureChanged: false Elapsed: 38.45472002029419ms
Info 1219 [15:25:31.461] Different program with same set of files:: structureIsReused:: 2
Info 1220 [15:25:31.462] getCompletionData: Get current token: 0.018123000860214233
Info 1221 [15:25:31.462] getCompletionData: Is inside comment: 0.0737060010433197
Info 1222 [15:25:31.463] getCompletionData: Get previous token 1: 0.06580200791358948
Info 1223 [15:25:31.463] getCompletionsAtPosition: isCompletionListBlocker: 0.018528014421463013
Info 1224 [15:25:31.463] Returning an empty list because completion was requested in an invalid position.
Info 1225 [15:25:31.593] getCompletionData: Get current token: 0.015141010284423828
Info 1226 [15:25:31.593] getCompletionData: Is inside comment: 0.06418201327323914
Info 1227 [15:25:31.593] getCompletionData: Get previous token 1: 0.0623440146446228
Info 1228 [15:25:31.593] getCompletionsAtPosition: isCompletionListBlocker: 0.018752992153167725
Info 1229 [15:25:31.593] Returning an empty list because completion was requested in an invalid position.
Info 1230 [15:25:31.676] getCompletionData: Get current token: 0.027907997369766235
Info 1231 [15:25:31.676] getCompletionData: Is inside comment: 0.08245900273323059
Info 1232 [15:25:31.676] getCompletionData: Get previous token 1: 0.07055202126502991
Info 1233 [15:25:31.676] getCompletionsAtPosition: isCompletionListBlocker: 0.020133018493652344
Info 1234 [15:25:31.676] Returning an empty list because completion was requested in an invalid position.
Info 1235 [15:25:31.795] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1236 [15:25:31.834] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 184 structureChanged: false Elapsed: 38.06258198618889ms
Info 1237 [15:25:31.834] Different program with same set of files:: structureIsReused:: 2
Info 1238 [15:25:31.835] getCompletionData: Get current token: 0.028211981058120728
Info 1239 [15:25:31.835] getCompletionData: Is inside comment: 0.09718501567840576
Info 1240 [15:25:31.835] getCompletionData: Get previous token 1: 0.06834900379180908
Info 1241 [15:25:31.835] getCompletionsAtPosition: isCompletionListBlocker: 0.020333975553512573
Info 1242 [15:25:31.856] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1243 [15:25:31.896] getCompletionData: Semantic work: 61.09858798980713
Info 1244 [15:25:31.935] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 37.10210898518562
Info 1245 [15:25:31.964] getCompletionData: Get current token: 0.03050100803375244
Info 1246 [15:25:31.964] getCompletionData: Is inside comment: 0.12041398882865906
Info 1247 [15:25:31.964] getCompletionData: Get previous token 1: 0.09323102235794067
Info 1248 [15:25:31.965] getCompletionsAtPosition: isCompletionListBlocker: 0.03959101438522339
Info 1249 [15:25:31.978] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1250 [15:25:31.987] getCompletionData: Semantic work: 22.641790002584457
Info 1251 [15:25:32.024] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 36.0113970041275
Info 1252 [15:25:32.041] getCompletionData: Get current token: 0.04609900712966919
Info 1253 [15:25:32.041] getCompletionData: Is inside comment: 0.13371899724006653
Info 1254 [15:25:32.041] getCompletionData: Get previous token 1: 0.15323799848556519
Info 1255 [15:25:32.042] getCompletionsAtPosition: isCompletionListBlocker: 0.032707005739212036
Info 1256 [15:25:32.058] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1257 [15:25:32.068] getCompletionData: Semantic work: 26.31598499417305
Info 1258 [15:25:32.088] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 18.00705000758171
Info 1259 [15:26:29.558] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1260 [15:26:29.611] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 185 structureChanged: false Elapsed: 51.2973729968071ms
Info 1261 [15:26:29.611] Different program with same set of files:: structureIsReused:: 2
Info 1262 [15:26:47.107] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1263 [15:26:47.180] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 186 structureChanged: false Elapsed: 48.417563021183014ms
Info 1264 [15:26:47.180] Different program with same set of files:: structureIsReused:: 2
Info 1265 [15:26:47.347] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1266 [15:26:47.391] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 187 structureChanged: false Elapsed: 44.33889800310135ms
Info 1267 [15:26:47.391] Different program with same set of files:: structureIsReused:: 2
Info 1268 [15:26:47.938] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1269 [15:26:47.960] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 188 structureChanged: false Elapsed: 21.321636974811554ms
Info 1270 [15:26:47.960] Different program with same set of files:: structureIsReused:: 2
Info 1271 [15:26:48.144] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1272 [15:26:48.175] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 189 structureChanged: false Elapsed: 31.337769001722336ms
Info 1273 [15:26:48.175] Different program with same set of files:: structureIsReused:: 2
Info 1274 [15:27:52.737] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1275 [15:27:52.788] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 190 structureChanged: false Elapsed: 50.898480981588364ms
Info 1276 [15:27:52.788] Different program with same set of files:: structureIsReused:: 2
Info 1277 [15:27:52.976] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1278 [15:27:53.026] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 191 structureChanged: false Elapsed: 50.088288992643356ms
Info 1279 [15:27:53.026] Different program with same set of files:: structureIsReused:: 2
Info 1280 [15:27:53.496] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1281 [15:27:53.540] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 192 structureChanged: false Elapsed: 43.98513901233673ms
Info 1282 [15:27:53.540] Different program with same set of files:: structureIsReused:: 2
Info 1283 [15:27:53.545] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1284 [15:27:53.574] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 193 structureChanged: false Elapsed: 28.82507798075676ms
Info 1285 [15:27:53.574] Different program with same set of files:: structureIsReused:: 2
Info 1286 [15:27:53.732] getCompletionData: Get current token: 0.026937007904052734
Info 1287 [15:27:53.732] getCompletionData: Is inside comment: 0.0859769880771637
Info 1288 [15:27:53.732] getCompletionData: Get previous token 1: 0.06343400478363037
Info 1289 [15:27:53.732] getCompletionData: Get previous token 2: 0.08575001358985901
Info 1290 [15:27:53.733] getCompletionsAtPosition: isCompletionListBlocker: 0.312516987323761
Info 1291 [15:27:53.799] getCompletionData: Semantic work: 66.69972997903824
Info 1292 [15:27:53.802] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 1.6852819919586182
Info 1293 [15:27:55.315] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1294 [15:27:55.337] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 194 structureChanged: false Elapsed: 21.0142480134964ms
Info 1295 [15:27:55.337] Different program with same set of files:: structureIsReused:: 2
Info 1296 [15:27:55.839] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1297 [15:27:55.880] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 195 structureChanged: false Elapsed: 40.8610720038414ms
Info 1298 [15:27:55.880] Different program with same set of files:: structureIsReused:: 2
Info 1299 [15:27:55.881] getCompletionData: Get current token: 0.12203198671340942
Info 1300 [15:27:55.881] getCompletionData: Is inside comment: 0.025669008493423462
Info 1301 [15:27:55.881] getCompletionData: Get previous token 1: 0.16148099303245544
Info 1302 [15:27:55.882] getCompletionData: Get previous token 2: 0.1330849826335907
Info 1303 [15:27:55.882] getCompletionsAtPosition: isCompletionListBlocker: 0.01828300952911377
Info 1304 [15:27:55.954] getCompletionData: Semantic work: 72.26511499285698
Info 1305 [15:27:55.983] getCompletionData: Get current token: 0.045410990715026855
Info 1306 [15:27:55.983] getCompletionData: Is inside comment: 0.011972993612289429
Info 1307 [15:27:55.983] getCompletionData: Get previous token 1: 0.07025200128555298
Info 1308 [15:27:55.983] getCompletionData: Get previous token 2: 0.07596999406814575
Info 1309 [15:27:55.983] getCompletionsAtPosition: isCompletionListBlocker: 0.014250993728637695
Info 1310 [15:27:55.989] getCompletionData: Semantic work: 5.21095997095108
Info 1311 [15:27:57.016] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1312 [15:27:57.060] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 196 structureChanged: false Elapsed: 43.900176018476486ms
Info 1313 [15:27:57.060] Different program with same set of files:: structureIsReused:: 2
Info 1314 [15:27:57.800] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1315 [15:27:57.823] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 197 structureChanged: false Elapsed: 23.262196987867355ms
Info 1316 [15:27:57.823] Different program with same set of files:: structureIsReused:: 2
Info 1317 [15:27:59.016] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1318 [15:27:59.062] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 198 structureChanged: false Elapsed: 46.01969900727272ms
Info 1319 [15:27:59.062] Different program with same set of files:: structureIsReused:: 2
Info 1320 [15:27:59.211] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1321 [15:27:59.247] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 199 structureChanged: false Elapsed: 35.719471007585526ms
Info 1322 [15:27:59.247] Different program with same set of files:: structureIsReused:: 2
Info 1323 [15:27:59.390] getCompletionData: Get current token: 0.027218014001846313
Info 1324 [15:27:59.390] getCompletionData: Is inside comment: 0.006172001361846924
Info 1325 [15:27:59.390] getCompletionData: Get previous token 1: 0.07566899061203003
Info 1326 [15:27:59.390] getCompletionsAtPosition: isCompletionListBlocker: 0.12098202109336853
Info 1327 [15:27:59.390] Returning an empty list because completion was requested in an invalid position.
Info 1328 [15:27:59.392] getCompletionData: Get current token: 0.01423799991607666
Info 1329 [15:27:59.392] getCompletionData: Is inside comment: 0.006498992443084717
Info 1330 [15:27:59.392] getCompletionData: Get previous token 1: 0.040585994720458984
Info 1331 [15:27:59.392] getCompletionsAtPosition: isCompletionListBlocker: 0.013594985008239746
Info 1332 [15:27:59.392] Returning an empty list because completion was requested in an invalid position.
Info 1333 [15:27:59.394] getCompletionData: Get current token: 0.014582991600036621
Info 1334 [15:27:59.394] getCompletionData: Is inside comment: 0.004364997148513794
Info 1335 [15:27:59.394] getCompletionData: Get previous token 1: 0.04037100076675415
Info 1336 [15:27:59.394] getCompletionsAtPosition: isCompletionListBlocker: 0.013298988342285156
Info 1337 [15:27:59.394] Returning an empty list because completion was requested in an invalid position.
Info 1338 [15:27:59.691] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1339 [15:27:59.746] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 200 structureChanged: false Elapsed: 54.99334600567818ms
Info 1340 [15:27:59.746] Different program with same set of files:: structureIsReused:: 2
Info 1341 [15:27:59.749] getCompletionData: Get current token: 0.02149099111557007
Info 1342 [15:27:59.749] getCompletionData: Is inside comment: 0.007795006036758423
Info 1343 [15:27:59.749] getCompletionData: Get previous token 1: 0.12561297416687012
Info 1344 [15:27:59.749] getCompletionsAtPosition: isCompletionListBlocker: 0.025916993618011475
Info 1345 [15:27:59.768] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1346 [15:27:59.808] getCompletionData: Semantic work: 58.89106801152229
Info 1347 [15:27:59.850] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.711569011211395
Info 1348 [15:27:59.867] getCompletionData: Get current token: 0.024966001510620117
Info 1349 [15:27:59.867] getCompletionData: Is inside comment: 0.006536990404129028
Info 1350 [15:27:59.867] getCompletionData: Get previous token 1: 0.07529798150062561
Info 1351 [15:27:59.867] getCompletionsAtPosition: isCompletionListBlocker: 0.02027300000190735
Info 1352 [15:27:59.882] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1353 [15:27:59.895] getCompletionData: Semantic work: 27.741946011781693
Info 1354 [15:27:59.917] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 21.01827698945999
Info 1355 [15:27:59.935] getCompletionData: Get current token: 0.026948988437652588
Info 1356 [15:27:59.935] getCompletionData: Is inside comment: 0.005780994892120361
Info 1357 [15:27:59.935] getCompletionData: Get previous token 1: 0.07386699318885803
Info 1358 [15:27:59.935] getCompletionsAtPosition: isCompletionListBlocker: 0.02402198314666748
Info 1359 [15:27:59.957] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1360 [15:27:59.969] getCompletionData: Semantic work: 33.557864993810654
Info 1361 [15:27:59.997] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 27.545868009328842
Info 1362 [15:28:27.606] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1363 [15:28:27.640] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 201 structureChanged: false Elapsed: 34.171328008174896ms
Info 1364 [15:28:27.641] Different program with same set of files:: structureIsReused:: 2
Info 1365 [15:28:28.050] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1366 [15:28:28.081] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 202 structureChanged: false Elapsed: 30.764243990182877ms
Info 1367 [15:28:28.081] Different program with same set of files:: structureIsReused:: 2
Err 1368  [15:28:28.298] Exception on executing command {"command":"getCodeFixes","seq":1533,"type":"request","arguments":{"file":"/home/thomas/Projects/emacs/OrgRoamForceGraphReact/app/components/graph/graph.tsx","startLine":124,"startOffset":11,"endLine":124,"endOffset":11,"errorCodes":[1005,7044]}}:

    Debug Failure. Invalid cast. The supplied value [object Object] did not pass the test 'isParameter'.

    Error: Debug Failure. Invalid cast. The supplied value [object Object] did not pass the test 'isParameter'.
        at Object.cast (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:1500:25)
        at doChange (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:140964:40)
        at /home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:140860:109
        at Function.ChangeTracker.with (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:134317:17)
        at Object.getCodeActions (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:140860:64)
        at /home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:135491:77
        at Object.flatMap (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:515:25)
        at Object.getFixes (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:135491:23)
        at /home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:149557:35
        at Object.flatMap (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:515:25)
        at Object.getCodeFixesAtPosition (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:149555:23)
        at IOSession.Session.getCodeFixes (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:160663:64)
        at Session.handlers.ts.Map.ts.getEntries._a.<computed> (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:159335:61)
        at /home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:160963:88
        at IOSession.Session.executeWithRequestId (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:160954:28)
        at IOSession.Session.executeCommand (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:160963:33)
        at IOSession.Session.onMessage (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:160989:35)
        at Interface.<anonymous> (/home/thomas/Projects/emacs/OrgRoamForceGraphReact/node_modules/typescript/lib/tsserver.js:163650:31)
        at Interface.emit (node:events:369:20)
        at Interface._onLine (node:readline:418:10)
        at Interface._normalWrite (node:readline:572:12)
        at Socket.ondata (node:readline:240:10)
        at Socket.emit (node:events:369:20)
        at addChunk (node:internal/streams/readable:313:12)
        at readableAddChunk (node:internal/streams/readable:288:9)
        at Socket.Readable.push (node:internal/streams/readable:227:10)
        at Pipe.onStreamRead (node:internal/stream_base_commons:190:23)
Info 1369 [15:28:44.483] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1370 [15:28:44.509] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 203 structureChanged: false Elapsed: 26.00593799352646ms
Info 1371 [15:28:44.509] Different program with same set of files:: structureIsReused:: 2
Info 1372 [15:28:44.940] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1373 [15:28:44.958] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1374 [15:28:44.958] forEachExternalModuleToImportFrom autoImportProvider: 17.54805800318718
Info 1375 [15:28:45.615] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1376 [15:28:45.650] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 204 structureChanged: false Elapsed: 34.96002599596977ms
Info 1377 [15:28:45.650] Different program with same set of files:: structureIsReused:: 2
Info 1378 [15:28:45.651] getCompletionData: Get current token: 0.019553005695343018
Info 1379 [15:28:45.651] getCompletionData: Is inside comment: 0.006433993577957153
Info 1380 [15:28:45.652] getCompletionData: Get previous token 1: 0.6920160055160522
Info 1381 [15:28:45.652] getCompletionData: Get previous token 2: 0.06321200728416443
Info 1382 [15:28:45.652] getCompletionsAtPosition: isCompletionListBlocker: 0.013599991798400879
Info 1383 [15:28:45.671] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1384 [15:28:45.715] getCompletionData: Semantic work: 62.59908300638199
Info 1385 [15:28:45.724] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 8.866044998168945
Info 1386 [15:28:46.037] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1387 [15:28:46.050] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1388 [15:28:46.050] forEachExternalModuleToImportFrom autoImportProvider: 12.649161010980606
Info 1389 [15:28:46.053] getCompletionData: Get current token: 0.030509978532791138
Info 1390 [15:28:46.053] getCompletionData: Is inside comment: 0.007739990949630737
Info 1391 [15:28:46.053] getCompletionData: Get previous token 1: 0.1111619770526886
Info 1392 [15:28:46.053] getCompletionData: Get previous token 2: 0.07280200719833374
Info 1393 [15:28:46.053] getCompletionsAtPosition: isCompletionListBlocker: 0.014950007200241089
Info 1394 [15:28:46.062] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1395 [15:28:46.066] getCompletionData: Semantic work: 12.504624009132385
Info 1396 [15:28:46.072] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.737130016088486
Info 1397 [15:28:46.077] getCompletionData: Get current token: 0.026867002248764038
Info 1398 [15:28:46.077] getCompletionData: Is inside comment: 0.005997002124786377
Info 1399 [15:28:46.077] getCompletionData: Get previous token 1: 0.08230501413345337
Info 1400 [15:28:46.077] getCompletionData: Get previous token 2: 0.07999199628829956
Info 1401 [15:28:46.078] getCompletionsAtPosition: isCompletionListBlocker: 0.013083994388580322
Info 1402 [15:28:46.086] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1403 [15:28:46.089] getCompletionData: Semantic work: 10.989600002765656
Info 1404 [15:28:46.094] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.581138998270035
Info 1405 [15:28:46.097] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1406 [15:28:46.115] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 205 structureChanged: false Elapsed: 17.798351019620895ms
Info 1407 [15:28:46.115] Different program with same set of files:: structureIsReused:: 2
Info 1408 [15:28:46.116] getCompletionData: Get current token: 0.01796400547027588
Info 1409 [15:28:46.116] getCompletionData: Is inside comment: 0.004135996103286743
Info 1410 [15:28:46.116] getCompletionData: Get previous token 1: 0.08213698863983154
Info 1411 [15:28:46.116] getCompletionData: Get previous token 2: 0.03990700840950012
Info 1412 [15:28:46.116] getCompletionsAtPosition: isCompletionListBlocker: 0.010051995515823364
Info 1413 [15:28:46.126] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1414 [15:28:46.151] getCompletionData: Semantic work: 35.162322014570236
Info 1415 [15:28:46.157] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.392529994249344
Info 1416 [15:28:46.430] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1417 [15:28:46.450] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1418 [15:28:46.451] forEachExternalModuleToImportFrom autoImportProvider: 20.83576601743698
Info 1419 [15:28:46.815] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1420 [15:28:46.915] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1421 [15:28:46.915] forEachExternalModuleToImportFrom autoImportProvider: 99.60353600978851
Info 1422 [15:28:47.129] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1423 [15:28:47.167] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 206 structureChanged: false Elapsed: 37.58211699128151ms
Info 1424 [15:28:47.167] Different program with same set of files:: structureIsReused:: 2
Info 1425 [15:28:47.168] getCompletionData: Get current token: 0.02837398648262024
Info 1426 [15:28:47.168] getCompletionData: Is inside comment: 0.006557971239089966
Info 1427 [15:28:47.168] getCompletionData: Get previous token 1: 0.14649099111557007
Info 1428 [15:28:47.168] getCompletionData: Get previous token 2: 0.07245200872421265
Info 1429 [15:28:47.168] getCompletionsAtPosition: isCompletionListBlocker: 0.019169986248016357
Info 1430 [15:28:47.186] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1431 [15:28:47.275] getCompletionData: Semantic work: 106.61902299523354
Info 1432 [15:28:47.286] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 10.857906997203827
Info 1433 [15:28:47.533] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1434 [15:28:47.577] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 207 structureChanged: false Elapsed: 43.97298601269722ms
Info 1435 [15:28:47.577] Different program with same set of files:: structureIsReused:: 2
Info 1436 [15:28:48.406] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1437 [15:28:48.430] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 208 structureChanged: false Elapsed: 23.68419399857521ms
Info 1438 [15:28:48.430] Different program with same set of files:: structureIsReused:: 2
Info 1439 [15:28:48.431] getCompletionData: Get current token: 0.016481995582580566
Info 1440 [15:28:48.431] getCompletionData: Is inside comment: 0.00594601035118103
Info 1441 [15:28:48.431] getCompletionData: Get previous token 1: 0.11243301630020142
Info 1442 [15:28:48.431] getCompletionData: Get previous token 2: 0.07490500807762146
Info 1443 [15:28:48.431] getCompletionsAtPosition: isCompletionListBlocker: 0.0195310115814209
Info 1444 [15:28:48.441] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1445 [15:28:48.494] getCompletionData: Semantic work: 63.1543969810009
Info 1446 [15:28:48.507] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.498099982738495
Info 1447 [15:28:48.885] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1448 [15:28:48.912] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1449 [15:28:48.912] forEachExternalModuleToImportFrom autoImportProvider: 26.777060985565186
Info 1450 [15:28:48.915] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1451 [15:28:48.947] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 209 structureChanged: false Elapsed: 31.794525980949402ms
Info 1452 [15:28:48.947] Different program with same set of files:: structureIsReused:: 2
Info 1453 [15:28:48.948] getCompletionData: Get current token: 0.016617000102996826
Info 1454 [15:28:48.948] getCompletionData: Is inside comment: 0.003675997257232666
Info 1455 [15:28:48.948] getCompletionData: Get previous token 1: 0.0817359983921051
Info 1456 [15:28:48.948] getCompletionData: Get previous token 2: 0.037822991609573364
Info 1457 [15:28:48.948] getCompletionsAtPosition: isCompletionListBlocker: 0.009842008352279663
Info 1458 [15:28:48.960] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1459 [15:28:48.985] getCompletionData: Semantic work: 36.70508697628975
Info 1460 [15:28:48.991] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.452259987592697
Info 1461 [15:28:48.994] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1462 [15:28:49.024] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 210 structureChanged: false Elapsed: 30.042405009269714ms
Info 1463 [15:28:49.024] Different program with same set of files:: structureIsReused:: 2
Info 1464 [15:28:49.025] getCompletionData: Get current token: 0.028633981943130493
Info 1465 [15:28:49.025] getCompletionData: Is inside comment: 0.008794993162155151
Info 1466 [15:28:49.025] getCompletionData: Get previous token 1: 0.11129197478294373
Info 1467 [15:28:49.025] getCompletionData: Get previous token 2: 0.07222700119018555
Info 1468 [15:28:49.025] getCompletionsAtPosition: isCompletionListBlocker: 0.018373996019363403
Info 1469 [15:28:49.040] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1470 [15:28:49.067] getCompletionData: Semantic work: 41.842949002981186
Info 1471 [15:28:49.073] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.475941002368927
Info 1472 [15:28:49.818] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1473 [15:28:49.847] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 211 structureChanged: false Elapsed: 28.56443500518799ms
Info 1474 [15:28:49.847] Different program with same set of files:: structureIsReused:: 2
Info 1475 [15:28:49.848] getCompletionData: Get current token: 0.016891002655029297
Info 1476 [15:28:49.848] getCompletionData: Is inside comment: 0.005934983491897583
Info 1477 [15:28:49.848] getCompletionData: Get previous token 1: 0.11334902048110962
Info 1478 [15:28:49.848] getCompletionsAtPosition: isCompletionListBlocker: 0.004301995038986206
Info 1479 [15:28:49.850] getCompletionData: Semantic work: 1.7229349911212921
Info 1480 [15:28:49.854] getCompletionData: Get current token: 0.02504897117614746
Info 1481 [15:28:49.854] getCompletionData: Is inside comment: 0.005272984504699707
Info 1482 [15:28:49.854] getCompletionData: Get previous token 1: 0.0763239860534668
Info 1483 [15:28:49.854] getCompletionsAtPosition: isCompletionListBlocker: 0.0055200159549713135
Info 1484 [15:28:49.854] getCompletionData: Semantic work: 0.6065970063209534
Info 1485 [15:28:49.877] getCompletionData: Get current token: 0.02595299482345581
Info 1486 [15:28:49.877] getCompletionData: Is inside comment: 0.006441980600357056
Info 1487 [15:28:49.877] getCompletionData: Get previous token 1: 0.05253300070762634
Info 1488 [15:28:49.878] getCompletionsAtPosition: isCompletionListBlocker: 0.005200982093811035
Info 1489 [15:28:49.878] getCompletionData: Semantic work: 0.426827996969223
Info 1490 [15:28:50.082] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1491 [15:28:50.124] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 212 structureChanged: false Elapsed: 41.98451900482178ms
Info 1492 [15:28:50.124] Different program with same set of files:: structureIsReused:: 2
Info 1493 [15:28:50.125] getCompletionData: Get current token: 0.04670298099517822
Info 1494 [15:28:50.125] getCompletionData: Is inside comment: 0.007735013961791992
Info 1495 [15:28:50.125] getCompletionData: Get previous token 1: 0.09174799919128418
Info 1496 [15:28:50.125] getCompletionData: Get previous token 2: 0.06846901774406433
Info 1497 [15:28:50.125] getCompletionsAtPosition: isCompletionListBlocker: 0.0048940181732177734
Info 1498 [15:28:50.126] getCompletionData: Semantic work: 1.1922590136528015
Info 1499 [15:28:50.386] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1500 [15:28:50.395] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1501 [15:28:50.395] forEachExternalModuleToImportFrom autoImportProvider: 9.22980397939682
Info 1502 [15:28:50.397] getCompletionData: Get current token: 0.014645993709564209
Info 1503 [15:28:50.397] getCompletionData: Is inside comment: 0.0052349865436553955
Info 1504 [15:28:50.397] getCompletionData: Get previous token 1: 0.051016002893447876
Info 1505 [15:28:50.397] getCompletionData: Get previous token 2: 0.046817004680633545
Info 1506 [15:28:50.398] getCompletionsAtPosition: isCompletionListBlocker: 0.004691004753112793
Info 1507 [15:28:50.398] getCompletionData: Semantic work: 0.3360010087490082
Info 1508 [15:28:50.398] getCompletionData: Get current token: 0.02216199040412903
Info 1509 [15:28:50.398] getCompletionData: Is inside comment: 0.006134003400802612
Info 1510 [15:28:50.398] getCompletionData: Get previous token 1: 0.05092000961303711
Info 1511 [15:28:50.398] getCompletionData: Get previous token 2: 0.04881399869918823
Info 1512 [15:28:50.399] getCompletionsAtPosition: isCompletionListBlocker: 0.004265010356903076
Info 1513 [15:28:50.399] getCompletionData: Semantic work: 0.37220799922943115
Info 1514 [15:28:50.399] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1515 [15:28:50.418] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 213 structureChanged: false Elapsed: 18.986360996961594ms
Info 1516 [15:28:50.418] Different program with same set of files:: structureIsReused:: 2
Info 1517 [15:28:50.860] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1518 [15:28:50.881] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 214 structureChanged: false Elapsed: 21.315305024385452ms
Info 1519 [15:28:50.881] Different program with same set of files:: structureIsReused:: 2
Info 1520 [15:28:50.882] getCompletionData: Get current token: 0.016689985990524292
Info 1521 [15:28:50.882] getCompletionData: Is inside comment: 0.00625300407409668
Info 1522 [15:28:50.882] getCompletionData: Get previous token 1: 0.08674901723861694
Info 1523 [15:28:50.882] getCompletionData: Get previous token 2: 0.061226993799209595
Info 1524 [15:28:50.882] getCompletionsAtPosition: isCompletionListBlocker: 0.003859996795654297
Info 1525 [15:28:50.883] getCompletionData: Semantic work: 0.8282829821109772
Info 1526 [15:28:51.118] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1527 [15:28:51.140] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1528 [15:28:51.140] forEachExternalModuleToImportFrom autoImportProvider: 22.089204996824265
Info 1529 [15:28:51.142] getCompletionData: Get current token: 0.014490991830825806
Info 1530 [15:28:51.143] getCompletionData: Is inside comment: 0.005537986755371094
Info 1531 [15:28:51.143] getCompletionData: Get previous token 1: 0.048781007528305054
Info 1532 [15:28:51.143] getCompletionData: Get previous token 2: 0.0493139922618866
Info 1533 [15:28:51.143] getCompletionsAtPosition: isCompletionListBlocker: 0.004913002252578735
Info 1534 [15:28:51.143] getCompletionData: Semantic work: 0.47877901792526245
Info 1535 [15:28:51.144] getCompletionData: Get current token: 0.022881001234054565
Info 1536 [15:28:51.144] getCompletionData: Is inside comment: 0.0063439905643463135
Info 1537 [15:28:51.144] getCompletionData: Get previous token 1: 0.04438501596450806
Info 1538 [15:28:51.144] getCompletionData: Get previous token 2: 0.12773600220680237
Info 1539 [15:28:51.144] getCompletionsAtPosition: isCompletionListBlocker: 0.004941999912261963
Info 1540 [15:28:51.144] getCompletionData: Semantic work: 0.3618510067462921
Info 1541 [15:28:51.145] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1542 [15:28:51.165] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 215 structureChanged: false Elapsed: 19.555426001548767ms
Info 1543 [15:28:51.165] Different program with same set of files:: structureIsReused:: 2
Info 1544 [15:28:51.546] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1545 [15:28:51.566] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 216 structureChanged: false Elapsed: 20.36829200387001ms
Info 1546 [15:28:51.567] Different program with same set of files:: structureIsReused:: 2
Info 1547 [15:28:51.567] getCompletionData: Get current token: 0.0176829993724823
Info 1548 [15:28:51.567] getCompletionData: Is inside comment: 0.004253000020980835
Info 1549 [15:28:51.567] getCompletionData: Get previous token 1: 0.06468501687049866
Info 1550 [15:28:51.568] getCompletionData: Get previous token 2: 0.033469974994659424
Info 1551 [15:28:51.568] getCompletionsAtPosition: isCompletionListBlocker: 0.003930002450942993
Info 1552 [15:28:51.569] getCompletionData: Semantic work: 1.0646770000457764
Info 1553 [15:28:51.765] forEachExternalModuleToImportFrom: filtered out 1155 modules by package.json contents
Info 1554 [15:28:51.779] forEachExternalModuleToImportFrom: filtered out 191 modules by package.json contents
Info 1555 [15:28:51.779] forEachExternalModuleToImportFrom autoImportProvider: 13.639490991830826
Info 1556 [15:28:51.781] getCompletionData: Get current token: 0.0148639976978302
Info 1557 [15:28:51.781] getCompletionData: Is inside comment: 0.004045993089675903
Info 1558 [15:28:51.781] getCompletionData: Get previous token 1: 0.03345298767089844
Info 1559 [15:28:51.781] getCompletionData: Get previous token 2: 0.0396600067615509
Info 1560 [15:28:51.781] getCompletionsAtPosition: isCompletionListBlocker: 0.0037700235843658447
Info 1561 [15:28:51.781] getCompletionData: Semantic work: 0.2626819908618927
Info 1562 [15:28:51.784] getCompletionData: Get current token: 0.02349698543548584
Info 1563 [15:28:51.784] getCompletionData: Is inside comment: 0.006393015384674072
Info 1564 [15:28:51.784] getCompletionData: Get previous token 1: 0.05247601866722107
Info 1565 [15:28:51.784] getCompletionData: Get previous token 2: 0.03957599401473999
Info 1566 [15:28:51.784] getCompletionsAtPosition: isCompletionListBlocker: 0.004216998815536499
Info 1567 [15:28:51.784] getCompletionData: Semantic work: 0.3817799985408783
Info 1568 [15:28:53.319] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1569 [15:28:53.338] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 217 structureChanged: false Elapsed: 19.711549997329712ms
Info 1570 [15:28:53.338] Different program with same set of files:: structureIsReused:: 2
Info 1571 [15:28:54.099] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1572 [15:28:54.136] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 218 structureChanged: false Elapsed: 37.19504502415657ms
Info 1573 [15:28:54.136] Different program with same set of files:: structureIsReused:: 2
Info 1574 [15:28:54.137] getCompletionData: Get current token: 0.01947799324989319
Info 1575 [15:28:54.137] getCompletionData: Is inside comment: 0.00693202018737793
Info 1576 [15:28:54.137] getCompletionData: Get previous token 1: 0.09516400098800659
Info 1577 [15:28:54.137] getCompletionData: Get previous token 2: 0.054682016372680664
Info 1578 [15:28:54.137] getCompletionsAtPosition: isCompletionListBlocker: 0.008708000183105469
Info 1579 [15:28:54.138] getCompletionData: Semantic work: 0.9077650010585785
Info 1580 [15:28:54.274] getCompletionData: Get current token: 0.015130013227462769
Info 1581 [15:28:54.274] getCompletionData: Is inside comment: 0.006543010473251343
Info 1582 [15:28:54.275] getCompletionData: Get previous token 1: 0.05107998847961426
Info 1583 [15:28:54.275] getCompletionData: Get previous token 2: 0.05486699938774109
Info 1584 [15:28:54.275] getCompletionsAtPosition: isCompletionListBlocker: 0.005586981773376465
Info 1585 [15:28:54.275] getCompletionData: Semantic work: 0.47088900208473206
Info 1586 [15:28:54.281] getCompletionData: Get current token: 0.01578599214553833
Info 1587 [15:28:54.282] getCompletionData: Is inside comment: 0.006436973810195923
Info 1588 [15:28:54.282] getCompletionData: Get previous token 1: 0.05098298192024231
Info 1589 [15:28:54.282] getCompletionData: Get previous token 2: 0.0527459979057312
Info 1590 [15:28:54.282] getCompletionsAtPosition: isCompletionListBlocker: 0.0056469738483428955
Info 1591 [15:28:54.282] getCompletionData: Semantic work: 0.4457630217075348
Info 1592 [15:28:54.860] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1593 [15:28:54.886] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 219 structureChanged: false Elapsed: 26.021506011486053ms
Info 1594 [15:28:54.886] Different program with same set of files:: structureIsReused:: 2
Info 1595 [15:28:55.153] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1596 [15:28:55.184] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 220 structureChanged: false Elapsed: 30.912248998880386ms
Info 1597 [15:28:55.186] Different program with same set of files:: structureIsReused:: 2
Info 1598 [15:28:55.674] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1599 [15:28:55.693] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 221 structureChanged: false Elapsed: 18.805765002965927ms
Info 1600 [15:28:55.693] Different program with same set of files:: structureIsReused:: 2
Info 1601 [15:28:58.312] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1602 [15:28:58.346] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 222 structureChanged: false Elapsed: 33.535952001810074ms
Info 1603 [15:28:58.346] Different program with same set of files:: structureIsReused:: 2
Info 1604 [15:29:01.397] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1605 [15:29:01.421] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 223 structureChanged: false Elapsed: 23.346406012773514ms
Info 1606 [15:29:01.421] Different program with same set of files:: structureIsReused:: 2
Info 1607 [15:29:01.604] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1608 [15:29:01.633] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 224 structureChanged: false Elapsed: 28.970862984657288ms
Info 1609 [15:29:01.633] Different program with same set of files:: structureIsReused:: 2
Info 1610 [15:29:01.975] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1611 [15:29:02.011] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 225 structureChanged: false Elapsed: 35.091499000787735ms
Info 1612 [15:29:02.011] Different program with same set of files:: structureIsReused:: 2
Info 1613 [15:29:02.180] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1614 [15:29:02.213] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 226 structureChanged: false Elapsed: 32.33439600467682ms
Info 1615 [15:29:02.213] Different program with same set of files:: structureIsReused:: 2
Info 1616 [15:29:02.492] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1617 [15:29:02.525] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 227 structureChanged: false Elapsed: 33.02963200211525ms
Info 1618 [15:29:02.525] Different program with same set of files:: structureIsReused:: 2
Info 1619 [15:29:02.526] getCompletionData: Get current token: 0.035113006830215454
Info 1620 [15:29:02.526] getCompletionData: Is inside comment: 0.011397004127502441
Info 1621 [15:29:02.526] getCompletionData: Get previous token 1: 0.14550700783729553
Info 1622 [15:29:02.527] getCompletionData: Get previous token 2: 0.08911198377609253
Info 1623 [15:29:02.527] getCompletionsAtPosition: isCompletionListBlocker: 0.007270008325576782
Info 1624 [15:29:02.554] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1625 [15:29:02.616] getCompletionData: Semantic work: 89.46407499909401
Info 1626 [15:29:02.677] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.397445976734161
Info 1627 [15:29:02.688] getCompletionData: Get current token: 0.13975000381469727
Info 1628 [15:29:02.688] getCompletionData: Is inside comment: 0.031040996313095093
Info 1629 [15:29:02.688] getCompletionData: Get previous token 1: 0.14827600121498108
Info 1630 [15:29:02.688] getCompletionData: Get previous token 2: 0.10408201813697815
Info 1631 [15:29:02.688] getCompletionsAtPosition: isCompletionListBlocker: 0.008587002754211426
Info 1632 [15:29:02.705] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1633 [15:29:02.709] getCompletionData: Semantic work: 20.55759099125862
Info 1634 [15:29:02.721] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 11.432345986366272
Info 1635 [15:29:02.732] getCompletionData: Get current token: 0.034334003925323486
Info 1636 [15:29:02.732] getCompletionData: Is inside comment: 0.0055020153522491455
Info 1637 [15:29:02.732] getCompletionData: Get previous token 1: 0.0659400224685669
Info 1638 [15:29:02.732] getCompletionData: Get previous token 2: 0.06090599298477173
Info 1639 [15:29:02.733] getCompletionsAtPosition: isCompletionListBlocker: 0.007431000471115112
Info 1640 [15:29:02.745] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1641 [15:29:02.750] getCompletionData: Semantic work: 17.555227011442184
Info 1642 [15:29:02.765] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 14.863611996173859
Info 1643 [15:29:02.855] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1644 [15:29:02.899] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 228 structureChanged: false Elapsed: 44.327833980321884ms
Info 1645 [15:29:02.901] Different program with same set of files:: structureIsReused:: 2
Info 1646 [15:29:02.902] getCompletionData: Get current token: 0.02782800793647766
Info 1647 [15:29:02.902] getCompletionData: Is inside comment: 0.006285995244979858
Info 1648 [15:29:02.902] getCompletionData: Get previous token 1: 0.09037798643112183
Info 1649 [15:29:02.902] getCompletionData: Get previous token 2: 0.0567300021648407
Info 1650 [15:29:02.902] getCompletionsAtPosition: isCompletionListBlocker: 0.005899012088775635
Info 1651 [15:29:02.932] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1652 [15:29:03.027] getCompletionData: Semantic work: 124.55206298828125
Info 1653 [15:29:03.075] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 15.974882990121841
Info 1654 [15:29:03.284] getCompletionData: Get current token: 0.02204301953315735
Info 1655 [15:29:03.284] getCompletionData: Is inside comment: 0.0057089924812316895
Info 1656 [15:29:03.284] getCompletionData: Get previous token 1: 0.05151498317718506
Info 1657 [15:29:03.285] getCompletionData: Get previous token 2: 0.04659000039100647
Info 1658 [15:29:03.285] getCompletionsAtPosition: isCompletionListBlocker: 0.0069699883460998535
Info 1659 [15:29:03.297] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1660 [15:29:03.305] getCompletionData: Semantic work: 19.863505005836487
Info 1661 [15:29:03.333] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 28.004106998443604
Info 1662 [15:29:03.349] getCompletionData: Get current token: 0.02409401535987854
Info 1663 [15:29:03.349] getCompletionData: Is inside comment: 0.004284977912902832
Info 1664 [15:29:03.349] getCompletionData: Get previous token 1: 0.05096399784088135
Info 1665 [15:29:03.349] getCompletionData: Get previous token 2: 0.04575800895690918
Info 1666 [15:29:03.349] getCompletionsAtPosition: isCompletionListBlocker: 0.004619002342224121
Info 1667 [15:29:03.359] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1668 [15:29:03.366] getCompletionData: Semantic work: 17.54730099439621
Info 1669 [15:29:03.385] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 18.577206999063492
Info 1670 [15:29:07.646] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1671 [15:29:07.666] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 229 structureChanged: false Elapsed: 19.910102009773254ms
Info 1672 [15:29:07.666] Different program with same set of files:: structureIsReused:: 2
Info 1673 [15:29:08.650] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1674 [15:29:08.701] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 230 structureChanged: false Elapsed: 51.20603400468826ms
Info 1675 [15:29:08.702] Different program with same set of files:: structureIsReused:: 2
Info 1676 [15:29:08.703] getCompletionData: Get current token: 0.03564101457595825
Info 1677 [15:29:08.703] getCompletionData: Is inside comment: 0.11039802432060242
Info 1678 [15:29:08.704] getCompletionData: Get previous token 1: 0.40423402190208435
Info 1679 [15:29:08.704] getCompletionData: Get previous token 2: 0.10887899994850159
Info 1680 [15:29:08.704] getCompletionsAtPosition: isCompletionListBlocker: 0.018541991710662842
Info 1681 [15:29:08.726] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1682 [15:29:08.774] getCompletionData: Semantic work: 70.05911800265312
Info 1683 [15:29:08.811] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.454802989959717
Info 1684 [15:29:08.816] getCompletionData: Get current token: 0.0185680091381073
Info 1685 [15:29:08.816] getCompletionData: Is inside comment: 0.06155899167060852
Info 1686 [15:29:08.816] getCompletionData: Get previous token 1: 0.09643799066543579
Info 1687 [15:29:08.816] getCompletionData: Get previous token 2: 0.0775269865989685
Info 1688 [15:29:08.816] getCompletionsAtPosition: isCompletionListBlocker: 0.01680600643157959
Info 1689 [15:29:08.825] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1690 [15:29:08.827] getCompletionData: Semantic work: 10.661099970340729
Info 1691 [15:29:08.832] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 4.813285976648331
Info 1692 [15:29:08.836] getCompletionData: Get current token: 0.011074990034103394
Info 1693 [15:29:08.836] getCompletionData: Is inside comment: 0.051829993724823
Info 1694 [15:29:08.836] getCompletionData: Get previous token 1: 0.04798901081085205
Info 1695 [15:29:08.836] getCompletionData: Get previous token 2: 0.05712997913360596
Info 1696 [15:29:08.836] getCompletionsAtPosition: isCompletionListBlocker: 0.013974994421005249
Info 1697 [15:29:08.845] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1698 [15:29:08.849] getCompletionData: Semantic work: 12.541502982378006
Info 1699 [15:29:08.855] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.800417989492416
Info 1700 [15:29:08.868] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1701 [15:29:08.892] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 231 structureChanged: false Elapsed: 23.117285013198853ms
Info 1702 [15:29:08.892] Different program with same set of files:: structureIsReused:: 2
Info 1703 [15:29:08.894] getCompletionData: Get current token: 0.02356100082397461
Info 1704 [15:29:08.894] getCompletionData: Is inside comment: 0.05831700563430786
Info 1705 [15:29:08.894] getCompletionData: Get previous token 1: 0.05634498596191406
Info 1706 [15:29:08.894] getCompletionData: Get previous token 2: 0.06922498345375061
Info 1707 [15:29:08.894] getCompletionsAtPosition: isCompletionListBlocker: 0.014376997947692871
Info 1708 [15:29:08.904] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1709 [15:29:08.943] getCompletionData: Semantic work: 48.65927800536156
Info 1710 [15:29:09.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 13.532719999551773
Info 1711 [15:29:09.782] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1712 [15:29:09.818] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 232 structureChanged: false Elapsed: 36.19830200076103ms
Info 1713 [15:29:09.818] Different program with same set of files:: structureIsReused:: 2
Info 1714 [15:29:09.819] getCompletionData: Get current token: 0.024395018815994263
Info 1715 [15:29:09.820] getCompletionData: Is inside comment: 0.2590399980545044
Info 1716 [15:29:09.820] getCompletionData: Get previous token 1: 0.06104502081871033
Info 1717 [15:29:09.820] getCompletionsAtPosition: isCompletionListBlocker: 0.005807995796203613
Info 1718 [15:29:09.822] getCompletionData: Semantic work: 1.4410399794578552
Info 1719 [15:29:09.950] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1720 [15:29:09.988] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 233 structureChanged: false Elapsed: 37.57854601740837ms
Info 1721 [15:29:09.988] Different program with same set of files:: structureIsReused:: 2
Info 1722 [15:29:09.989] getCompletionData: Get current token: 0.013435989618301392
Info 1723 [15:29:09.989] getCompletionData: Is inside comment: 0.06530001759529114
Info 1724 [15:29:09.989] getCompletionData: Get previous token 1: 0.05794200301170349
Info 1725 [15:29:09.989] getCompletionData: Get previous token 2: 0.07346901297569275
Info 1726 [15:29:09.989] getCompletionsAtPosition: isCompletionListBlocker: 0.005939990282058716
Info 1727 [15:29:09.990] getCompletionData: Semantic work: 0.9126580059528351
Info 1728 [15:29:10.078] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1729 [15:29:10.123] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 234 structureChanged: false Elapsed: 44.99612599611282ms
Info 1730 [15:29:10.123] Different program with same set of files:: structureIsReused:: 2
Info 1731 [15:29:10.124] getCompletionData: Get current token: 0.03161698579788208
Info 1732 [15:29:10.124] getCompletionData: Is inside comment: 0.09934800863265991
Info 1733 [15:29:10.124] getCompletionData: Get previous token 1: 0.08643600344657898
Info 1734 [15:29:10.124] getCompletionData: Get previous token 2: 0.11496898531913757
Info 1735 [15:29:10.124] getCompletionsAtPosition: isCompletionListBlocker: 0.0054939985275268555
Info 1736 [15:29:10.128] getCompletionData: Semantic work: 3.6555940210819244
Info 1737 [15:29:10.129] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1738 [15:29:10.173] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 235 structureChanged: false Elapsed: 43.81382501125336ms
Info 1739 [15:29:10.173] Different program with same set of files:: structureIsReused:: 2
Info 1740 [15:29:10.174] getCompletionData: Get current token: 0.09833899140357971
Info 1741 [15:29:10.174] getCompletionData: Is inside comment: 0.0359099805355072
Info 1742 [15:29:10.174] getCompletionData: Get previous token 1: 0.029550999402999878
Info 1743 [15:29:10.174] getCompletionData: Get previous token 2: 0.033074021339416504
Info 1744 [15:29:10.174] getCompletionsAtPosition: isCompletionListBlocker: 0.005021989345550537
Info 1745 [15:29:10.176] getCompletionData: Semantic work: 1.596327006816864
Info 1746 [15:29:10.178] getCompletionData: Get current token: 0.014461010694503784
Info 1747 [15:29:10.178] getCompletionData: Is inside comment: 0.052679985761642456
Info 1748 [15:29:10.178] getCompletionData: Get previous token 1: 0.04370298981666565
Info 1749 [15:29:10.178] getCompletionData: Get previous token 2: 0.03379499912261963
Info 1750 [15:29:10.178] getCompletionsAtPosition: isCompletionListBlocker: 0.004440993070602417
Info 1751 [15:29:10.179] getCompletionData: Semantic work: 0.7507890164852142
Info 1752 [15:29:10.182] getCompletionData: Get current token: 0.028027981519699097
Info 1753 [15:29:10.183] getCompletionData: Is inside comment: 0.07056301832199097
Info 1754 [15:29:10.183] getCompletionData: Get previous token 1: 0.06120699644088745
Info 1755 [15:29:10.183] getCompletionData: Get previous token 2: 0.06648901104927063
Info 1756 [15:29:10.183] getCompletionsAtPosition: isCompletionListBlocker: 0.005712985992431641
Info 1757 [15:29:10.184] getCompletionData: Semantic work: 0.702925980091095
Info 1758 [15:29:10.422] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1759 [15:29:10.455] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 236 structureChanged: false Elapsed: 33.52503901720047ms
Info 1760 [15:29:10.456] Different program with same set of files:: structureIsReused:: 2
Info 1761 [15:29:10.457] getCompletionData: Get current token: 0.03083100914955139
Info 1762 [15:29:10.457] getCompletionData: Is inside comment: 0.0795539915561676
Info 1763 [15:29:10.457] getCompletionData: Get previous token 1: 0.06586799025535583
Info 1764 [15:29:10.457] getCompletionData: Get previous token 2: 0.07389900088310242
Info 1765 [15:29:10.457] getCompletionsAtPosition: isCompletionListBlocker: 0.005021989345550537
Info 1766 [15:29:10.458] getCompletionData: Semantic work: 1.2127859890460968
Info 1767 [15:29:10.625] getCompletionData: Get current token: 0.028016000986099243
Info 1768 [15:29:10.625] getCompletionData: Is inside comment: 0.07192301750183105
Info 1769 [15:29:10.625] getCompletionData: Get previous token 1: 0.06318700313568115
Info 1770 [15:29:10.625] getCompletionData: Get previous token 2: 0.07643699645996094
Info 1771 [15:29:10.626] getCompletionsAtPosition: isCompletionListBlocker: 0.004586011171340942
Info 1772 [15:29:10.626] getCompletionData: Semantic work: 0.7402060031890869
Info 1773 [15:29:10.627] getCompletionData: Get current token: 0.02737298607826233
Info 1774 [15:29:10.627] getCompletionData: Is inside comment: 0.08142399787902832
Info 1775 [15:29:10.627] getCompletionData: Get previous token 1: 0.06425797939300537
Info 1776 [15:29:10.627] getCompletionData: Get previous token 2: 0.06486400961875916
Info 1777 [15:29:10.627] getCompletionsAtPosition: isCompletionListBlocker: 0.005498975515365601
Info 1778 [15:29:10.628] getCompletionData: Semantic work: 0.6941120028495789
Info 1779 [15:29:10.628] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1780 [15:29:10.666] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 237 structureChanged: false Elapsed: 37.95434099435806ms
Info 1781 [15:29:10.666] Different program with same set of files:: structureIsReused:: 2
Info 1782 [15:29:10.711] getCompletionData: Get current token: 0.03261098265647888
Info 1783 [15:29:10.711] getCompletionData: Is inside comment: 0.07708299160003662
Info 1784 [15:29:10.711] getCompletionData: Get previous token 1: 0.0749489963054657
Info 1785 [15:29:10.711] getCompletionData: Get previous token 2: 0.06921398639678955
Info 1786 [15:29:10.712] getCompletionsAtPosition: isCompletionListBlocker: 0.006415009498596191
Info 1787 [15:29:10.712] getCompletionData: Semantic work: 0.7404589951038361
Info 1788 [15:29:10.758] getCompletionData: Get current token: 0.011896997690200806
Info 1789 [15:29:10.758] getCompletionData: Is inside comment: 0.04412198066711426
Info 1790 [15:29:10.758] getCompletionData: Get previous token 1: 0.03940999507904053
Info 1791 [15:29:10.758] getCompletionData: Get previous token 2: 0.05363699793815613
Info 1792 [15:29:10.758] getCompletionsAtPosition: isCompletionListBlocker: 0.006952017545700073
Info 1793 [15:29:10.759] getCompletionData: Semantic work: 0.9936949908733368
Info 1794 [15:29:10.893] getCompletionData: Get current token: 0.010794997215270996
Info 1795 [15:29:10.893] getCompletionData: Is inside comment: 0.03215301036834717
Info 1796 [15:29:10.893] getCompletionData: Get previous token 1: 0.02462899684906006
Info 1797 [15:29:10.893] getCompletionData: Get previous token 2: 0.06017100811004639
Info 1798 [15:29:10.893] getCompletionsAtPosition: isCompletionListBlocker: 0.00459599494934082
Info 1799 [15:29:10.894] getCompletionData: Semantic work: 0.33399200439453125
Info 1800 [15:29:11.788] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1801 [15:29:11.819] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 238 structureChanged: false Elapsed: 30.96355301141739ms
Info 1802 [15:29:11.819] Different program with same set of files:: structureIsReused:: 2
Info 1803 [15:29:11.820] getCompletionData: Get current token: 0.012217015027999878
Info 1804 [15:29:11.820] getCompletionData: Is inside comment: 0.0463850200176239
Info 1805 [15:29:11.820] getCompletionData: Get previous token 1: 0.04022800922393799
Info 1806 [15:29:11.820] getCompletionData: Get previous token 2: 0.049594998359680176
Info 1807 [15:29:11.820] getCompletionsAtPosition: isCompletionListBlocker: 0.0044960081577301025
Info 1808 [15:29:11.821] getCompletionData: Semantic work: 0.8506959974765778
Info 1809 [15:29:11.944] getCompletionData: Get current token: 0.0102120041847229
Info 1810 [15:29:11.944] getCompletionData: Is inside comment: 0.04818299412727356
Info 1811 [15:29:11.944] getCompletionData: Get previous token 1: 0.03909999132156372
Info 1812 [15:29:11.944] getCompletionData: Get previous token 2: 0.05614200234413147
Info 1813 [15:29:11.944] getCompletionsAtPosition: isCompletionListBlocker: 0.005392998456954956
Info 1814 [15:29:11.945] getCompletionData: Semantic work: 0.42717501521110535
Info 1815 [15:29:12.008] getCompletionData: Get current token: 0.020103007555007935
Info 1816 [15:29:12.008] getCompletionData: Is inside comment: 0.04510200023651123
Info 1817 [15:29:12.008] getCompletionData: Get previous token 1: 0.039469003677368164
Info 1818 [15:29:12.008] getCompletionData: Get previous token 2: 0.0534919798374176
Info 1819 [15:29:12.008] getCompletionsAtPosition: isCompletionListBlocker: 0.004931002855300903
Info 1820 [15:29:12.008] getCompletionData: Semantic work: 0.574755996465683
Info 1821 [15:29:19.305] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1822 [15:29:19.346] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 239 structureChanged: false Elapsed: 40.025086998939514ms
Info 1823 [15:29:19.346] Different program with same set of files:: structureIsReused:: 2
Info 1824 [15:29:20.009] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1825 [15:29:20.051] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 240 structureChanged: false Elapsed: 41.59410297870636ms
Info 1826 [15:29:20.051] Different program with same set of files:: structureIsReused:: 2
Info 1827 [15:29:20.621] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1828 [15:29:20.643] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 241 structureChanged: false Elapsed: 21.17728301882744ms
Info 1829 [15:29:20.643] Different program with same set of files:: structureIsReused:: 2
Info 1830 [15:29:24.468] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1831 [15:29:24.516] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 242 structureChanged: false Elapsed: 33.2663160264492ms
Info 1832 [15:29:24.516] Different program with same set of files:: structureIsReused:: 2
Info 1833 [15:29:25.394] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1834 [15:29:25.416] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 243 structureChanged: false Elapsed: 22.531774014234543ms
Info 1835 [15:29:25.416] Different program with same set of files:: structureIsReused:: 2
Info 1836 [15:29:25.417] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1837 [15:29:25.459] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 244 structureChanged: false Elapsed: 41.6479229927063ms
Info 1838 [15:29:25.459] Different program with same set of files:: structureIsReused:: 2
Info 1839 [15:29:26.114] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1840 [15:29:26.156] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 245 structureChanged: false Elapsed: 41.39697700738907ms
Info 1841 [15:29:26.156] Different program with same set of files:: structureIsReused:: 2
Info 1842 [15:29:26.157] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1843 [15:29:26.197] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 246 structureChanged: false Elapsed: 39.85939899086952ms
Info 1844 [15:29:26.197] Different program with same set of files:: structureIsReused:: 2
Info 1845 [15:29:26.505] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1846 [15:29:26.530] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 247 structureChanged: false Elapsed: 24.285878986120224ms
Info 1847 [15:29:26.530] Different program with same set of files:: structureIsReused:: 2
Info 1848 [15:29:26.531] getCompletionData: Get current token: 0.014803975820541382
Info 1849 [15:29:26.531] getCompletionData: Is inside comment: 0.03151199221611023
Info 1850 [15:29:26.531] getCompletionData: Get previous token 1: 0.038141995668411255
Info 1851 [15:29:26.531] getCompletionData: Get previous token 2: 0.027630001306533813
Info 1852 [15:29:26.531] getCompletionsAtPosition: isCompletionListBlocker: 0.0062220096588134766
Info 1853 [15:29:26.541] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1854 [15:29:26.596] getCompletionData: Semantic work: 64.4227420091629
Info 1855 [15:29:26.660] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 12.863941997289658
Info 1856 [15:29:26.668] getCompletionData: Get current token: 0.040778011083602905
Info 1857 [15:29:26.668] getCompletionData: Is inside comment: 0.07656702399253845
Info 1858 [15:29:26.668] getCompletionData: Get previous token 1: 0.0646740198135376
Info 1859 [15:29:26.668] getCompletionData: Get previous token 2: 0.0767579972743988
Info 1860 [15:29:26.668] getCompletionsAtPosition: isCompletionListBlocker: 0.007355988025665283
Info 1861 [15:29:26.679] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1862 [15:29:26.684] getCompletionData: Semantic work: 15.579257011413574
Info 1863 [15:29:26.699] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 15.13638699054718
Info 1864 [15:29:26.707] getCompletionData: Get current token: 0.04037797451019287
Info 1865 [15:29:26.707] getCompletionData: Is inside comment: 0.07392999529838562
Info 1866 [15:29:26.707] getCompletionData: Get previous token 1: 0.06538298726081848
Info 1867 [15:29:26.707] getCompletionData: Get previous token 2: 0.06908601522445679
Info 1868 [15:29:26.707] getCompletionsAtPosition: isCompletionListBlocker: 0.00868600606918335
Info 1869 [15:29:26.728] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1870 [15:29:26.732] getCompletionData: Semantic work: 24.82370999455452
Info 1871 [15:29:26.742] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 10.041549980640411
Info 1872 [15:29:26.874] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1873 [15:29:26.896] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 248 structureChanged: false Elapsed: 22.297933012247086ms
Info 1874 [15:29:26.898] Different program with same set of files:: structureIsReused:: 2
Info 1875 [15:29:26.899] getCompletionData: Get current token: 0.02053201198577881
Info 1876 [15:29:26.899] getCompletionData: Is inside comment: 0.0724090039730072
Info 1877 [15:29:26.899] getCompletionData: Get previous token 1: 0.054602980613708496
Info 1878 [15:29:26.899] getCompletionData: Get previous token 2: 0.05943399667739868
Info 1879 [15:29:26.899] getCompletionsAtPosition: isCompletionListBlocker: 0.006362974643707275
Info 1880 [15:29:26.911] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1881 [15:29:26.953] getCompletionData: Semantic work: 53.69733500480652
Info 1882 [15:29:27.001] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 20.924450993537903
Info 1883 [15:32:30.725] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1884 [15:32:30.817] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 249 structureChanged: false Elapsed: 92.12035900354385ms
Info 1885 [15:32:30.818] Different program with same set of files:: structureIsReused:: 2
Info 1886 [15:32:30.820] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1887 [15:32:30.870] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 250 structureChanged: false Elapsed: 49.21509599685669ms
Info 1888 [15:32:30.870] Different program with same set of files:: structureIsReused:: 2
Info 1889 [15:32:31.363] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1890 [15:32:31.411] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 251 structureChanged: false Elapsed: 47.048267006874084ms
Info 1891 [15:32:31.411] Different program with same set of files:: structureIsReused:: 2
Info 1892 [15:32:31.720] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1893 [15:32:31.749] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 252 structureChanged: false Elapsed: 28.204779982566833ms
Info 1894 [15:32:31.749] Different program with same set of files:: structureIsReused:: 2
Info 1895 [15:32:32.584] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1896 [15:32:32.603] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 253 structureChanged: false Elapsed: 18.65797397494316ms
Info 1897 [15:32:32.603] Different program with same set of files:: structureIsReused:: 2
Info 1898 [15:32:32.767] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1899 [15:32:32.807] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 254 structureChanged: false Elapsed: 39.93161600828171ms
Info 1900 [15:32:32.807] Different program with same set of files:: structureIsReused:: 2
Info 1901 [15:32:33.102] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1902 [15:32:33.162] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 255 structureChanged: false Elapsed: 60.410452991724014ms
Info 1903 [15:32:33.163] Different program with same set of files:: structureIsReused:: 2
Info 1904 [15:32:33.491] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1905 [15:32:33.559] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 256 structureChanged: false Elapsed: 68.59407398104668ms
Info 1906 [15:32:33.560] Different program with same set of files:: structureIsReused:: 2
Info 1907 [15:32:33.806] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1908 [15:32:33.829] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 257 structureChanged: false Elapsed: 22.973892003297806ms
Info 1909 [15:32:33.829] Different program with same set of files:: structureIsReused:: 2
Info 1910 [15:32:34.101] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1911 [15:32:34.138] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 258 structureChanged: false Elapsed: 36.834961980581284ms
Info 1912 [15:32:34.138] Different program with same set of files:: structureIsReused:: 2
Info 1913 [15:32:35.310] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1914 [15:32:35.338] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 259 structureChanged: false Elapsed: 27.930322021245956ms
Info 1915 [15:32:35.338] Different program with same set of files:: structureIsReused:: 2
Info 1916 [15:32:36.368] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1917 [15:32:36.396] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 260 structureChanged: false Elapsed: 28.159612983465195ms
Info 1918 [15:32:36.397] Different program with same set of files:: structureIsReused:: 2
Info 1919 [15:32:36.397] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1920 [15:32:36.437] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 261 structureChanged: false Elapsed: 39.76774799823761ms
Info 1921 [15:32:36.437] Different program with same set of files:: structureIsReused:: 2
Info 1922 [15:32:36.761] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1923 [15:32:36.807] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 262 structureChanged: false Elapsed: 45.436257004737854ms
Info 1924 [15:32:36.807] Different program with same set of files:: structureIsReused:: 2
Info 1925 [15:32:37.353] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1926 [15:32:37.396] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 263 structureChanged: false Elapsed: 42.53566402196884ms
Info 1927 [15:32:37.396] Different program with same set of files:: structureIsReused:: 2
Info 1928 [15:32:45.993] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1929 [15:32:46.021] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 264 structureChanged: false Elapsed: 27.432055979967117ms
Info 1930 [15:32:46.021] Different program with same set of files:: structureIsReused:: 2
Info 1931 [15:32:46.022] getCompletionData: Get current token: 0.030824005603790283
Info 1932 [15:32:46.022] getCompletionData: Is inside comment: 0.005739003419876099
Info 1933 [15:32:46.022] getCompletionData: Get previous token 1: 0.10842999815940857
Info 1934 [15:32:46.022] getCompletionData: Get previous token 2: 0.06928899884223938
Info 1935 [15:32:46.022] getCompletionsAtPosition: isCompletionListBlocker: 0.005941987037658691
Info 1936 [15:32:46.033] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1937 [15:32:46.108] getCompletionData: Semantic work: 86.19202101230621
Info 1938 [15:32:46.120] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 11.712022006511688
Info 1939 [15:32:46.180] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1940 [15:32:46.216] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 265 structureChanged: false Elapsed: 35.4738430082798ms
Info 1941 [15:32:46.216] Different program with same set of files:: structureIsReused:: 2
Info 1942 [15:32:46.216] getCompletionData: Get current token: 0.029796987771987915
Info 1943 [15:32:46.217] getCompletionData: Is inside comment: 0.005107998847961426
Info 1944 [15:32:46.217] getCompletionData: Get previous token 1: 0.10806399583816528
Info 1945 [15:32:46.217] getCompletionData: Get previous token 2: 0.07605001330375671
Info 1946 [15:32:46.217] getCompletionsAtPosition: isCompletionListBlocker: 0.005406975746154785
Info 1947 [15:32:46.231] getSymbolsFromOtherSourceFileExports: Using cached list
Info 1948 [15:32:46.267] getCompletionData: Semantic work: 49.61280000209808
Info 1949 [15:32:46.273] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 6.324121028184891
Info 1950 [15:32:46.375] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1951 [15:32:46.400] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 266 structureChanged: false Elapsed: 24.174531996250153ms
Info 1952 [15:32:46.400] Different program with same set of files:: structureIsReused:: 2
Info 1953 [15:32:46.401] getCompletionData: Get current token: 0.016133993864059448
Info 1954 [15:32:46.401] getCompletionData: Is inside comment: 0.0048139989376068115
Info 1955 [15:32:46.401] getCompletionData: Get previous token 1: 0.11566299200057983
Info 1956 [15:32:46.401] getCompletionsAtPosition: isCompletionListBlocker: 0.00645899772644043
Info 1957 [15:32:46.402] getCompletionData: Semantic work: 0.8940220177173615
Info 1958 [15:32:46.548] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1959 [15:32:46.590] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 267 structureChanged: false Elapsed: 42.819190979003906ms
Info 1960 [15:32:46.591] Different program with same set of files:: structureIsReused:: 2
Info 1961 [15:32:46.591] getCompletionData: Get current token: 0.050839006900787354
Info 1962 [15:32:46.591] getCompletionData: Is inside comment: 0.0067739784717559814
Info 1963 [15:32:46.591] getCompletionData: Get previous token 1: 0.14058199524879456
Info 1964 [15:32:46.592] getCompletionData: Get previous token 2: 0.11665701866149902
Info 1965 [15:32:46.592] getCompletionsAtPosition: isCompletionListBlocker: 0.0060880184173583984
Info 1966 [15:32:46.593] getCompletionData: Semantic work: 1.3852660059928894
Info 1967 [15:32:46.613] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1968 [15:32:46.648] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 268 structureChanged: false Elapsed: 35.047400027513504ms
Info 1969 [15:32:46.648] Different program with same set of files:: structureIsReused:: 2
Info 1970 [15:32:46.649] getCompletionData: Get current token: 0.030391991138458252
Info 1971 [15:32:46.649] getCompletionData: Is inside comment: 0.005704998970031738
Info 1972 [15:32:46.649] getCompletionData: Get previous token 1: 0.11270901560783386
Info 1973 [15:32:46.649] getCompletionData: Get previous token 2: 0.08293700218200684
Info 1974 [15:32:46.649] getCompletionsAtPosition: isCompletionListBlocker: 0.005206972360610962
Info 1975 [15:32:46.650] getCompletionData: Semantic work: 1.036305010318756
Info 1976 [15:32:46.671] getCompletionData: Get current token: 0.04973199963569641
Info 1977 [15:32:46.671] getCompletionData: Is inside comment: 0.007681995630264282
Info 1978 [15:32:46.671] getCompletionData: Get previous token 1: 0.1401279866695404
Info 1979 [15:32:46.671] getCompletionData: Get previous token 2: 0.13530898094177246
Info 1980 [15:32:46.696] getCompletionsAtPosition: isCompletionListBlocker: 0.007863998413085938
Info 1981 [15:32:46.697] getCompletionData: Semantic work: 0.6971810162067413
Info 1982 [15:32:46.697] getCompletionData: Get current token: 0.043489009141922
Info 1983 [15:32:46.697] getCompletionData: Is inside comment: 0.006635993719100952
Info 1984 [15:32:46.697] getCompletionData: Get previous token 1: 0.12309199571609497
Info 1985 [15:32:46.698] getCompletionData: Get previous token 2: 0.12251001596450806
Info 1986 [15:32:46.698] getCompletionsAtPosition: isCompletionListBlocker: 0.008800983428955078
Info 1987 [15:32:46.698] getCompletionData: Semantic work: 0.5906170010566711
Info 1988 [15:32:46.703] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 1989 [15:32:46.742] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 269 structureChanged: false Elapsed: 38.90656799077988ms
Info 1990 [15:32:46.742] Different program with same set of files:: structureIsReused:: 2
Info 1991 [15:32:46.743] getCompletionData: Get current token: 0.06039398908615112
Info 1992 [15:32:46.743] getCompletionData: Is inside comment: 0.009957998991012573
Info 1993 [15:32:46.743] getCompletionData: Get previous token 1: 0.17682898044586182
Info 1994 [15:32:46.743] getCompletionData: Get previous token 2: 0.19002899527549744
Info 1995 [15:32:46.744] getCompletionsAtPosition: isCompletionListBlocker: 0.00851699709892273
Info 1996 [15:32:46.746] getCompletionData: Semantic work: 1.819403976202011
Info 1997 [15:32:46.751] getCompletionData: Get current token: 0.045103996992111206
Info 1998 [15:32:46.751] getCompletionData: Is inside comment: 0.006324023008346558
Info 1999 [15:32:46.751] getCompletionData: Get previous token 1: 0.12510597705841064
Info 2000 [15:32:46.751] getCompletionData: Get previous token 2: 0.1235789954662323
Info 2001 [15:32:46.751] getCompletionsAtPosition: isCompletionListBlocker: 0.00569501519203186
Info 2002 [15:32:46.752] getCompletionData: Semantic work: 1.0474950075149536
Info 2003 [15:32:46.754] getCompletionData: Get current token: 0.04624500870704651
Info 2004 [15:32:46.754] getCompletionData: Is inside comment: 0.0057669878005981445
Info 2005 [15:32:46.754] getCompletionData: Get previous token 1: 0.11490800976753235
Info 2006 [15:32:46.754] getCompletionData: Get previous token 2: 0.11215999722480774
Info 2007 [15:32:46.754] getCompletionsAtPosition: isCompletionListBlocker: 0.0051660239696502686
Info 2008 [15:32:46.755] getCompletionData: Semantic work: 0.5228350162506104
Info 2009 [15:32:47.010] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2010 [15:32:47.038] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 270 structureChanged: false Elapsed: 28.1163489818573ms
Info 2011 [15:32:47.038] Different program with same set of files:: structureIsReused:: 2
Info 2012 [15:32:47.040] getCompletionData: Get current token: 0.054889976978302
Info 2013 [15:32:47.040] getCompletionData: Is inside comment: 0.17905500531196594
Info 2014 [15:32:47.040] getCompletionData: Get previous token 1: 0.1376030147075653
Info 2015 [15:32:47.040] getCompletionData: Get previous token 2: 0.10519799590110779
Info 2016 [15:32:47.040] getCompletionsAtPosition: isCompletionListBlocker: 0.0054409801959991455
Info 2017 [15:32:47.044] getCompletionData: Semantic work: 3.7929670214653015
Info 2018 [15:32:47.047] getCompletionData: Get current token: 0.04350000619888306
Info 2019 [15:32:47.047] getCompletionData: Is inside comment: 0.006935000419616699
Info 2020 [15:32:47.047] getCompletionData: Get previous token 1: 0.11232802271842957
Info 2021 [15:32:47.047] getCompletionData: Get previous token 2: 0.11138498783111572
Info 2022 [15:32:47.047] getCompletionsAtPosition: isCompletionListBlocker: 0.006147980690002441
Info 2023 [15:32:47.048] getCompletionData: Semantic work: 0.5386199951171875
Info 2024 [15:32:47.050] getCompletionData: Get current token: 0.04376000165939331
Info 2025 [15:32:47.050] getCompletionData: Is inside comment: 0.006494998931884766
Info 2026 [15:32:47.050] getCompletionData: Get previous token 1: 0.3888019919395447
Info 2027 [15:32:47.051] getCompletionData: Get previous token 2: 0.11882397532463074
Info 2028 [15:32:47.051] getCompletionsAtPosition: isCompletionListBlocker: 0.006783008575439453
Info 2029 [15:32:47.065] getCompletionData: Semantic work: 14.36005300283432
Info 2030 [15:32:47.242] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2031 [15:32:47.269] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 271 structureChanged: false Elapsed: 27.252320021390915ms
Info 2032 [15:32:47.269] Different program with same set of files:: structureIsReused:: 2
Info 2033 [15:32:47.635] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2034 [15:32:47.679] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 272 structureChanged: false Elapsed: 44.081321001052856ms
Info 2035 [15:32:47.679] Different program with same set of files:: structureIsReused:: 2
Info 2036 [15:32:47.680] getCompletionData: Get current token: 0.04474100470542908
Info 2037 [15:32:47.680] getCompletionData: Is inside comment: 0.007775008678436279
Info 2038 [15:32:47.680] getCompletionData: Get previous token 1: 0.1029520034790039
Info 2039 [15:32:47.680] getCompletionData: Get previous token 2: 0.07052800059318542
Info 2040 [15:32:47.680] getCompletionsAtPosition: isCompletionListBlocker: 0.006862998008728027
Info 2041 [15:32:47.682] getCompletionData: Semantic work: 1.3826319873332977
Info 2042 [15:32:47.848] getCompletionData: Get current token: 0.015294015407562256
Info 2043 [15:32:47.848] getCompletionData: Is inside comment: 0.003260999917984009
Info 2044 [15:32:47.848] getCompletionData: Get previous token 1: 0.031911998987197876
Info 2045 [15:32:47.848] getCompletionData: Get previous token 2: 0.02744099497795105
Info 2046 [15:32:47.848] getCompletionsAtPosition: isCompletionListBlocker: 0.004022002220153809
Info 2047 [15:32:47.848] getCompletionData: Semantic work: 0.1825380027294159
Info 2048 [15:32:47.849] getCompletionData: Get current token: 0.01353001594543457
Info 2049 [15:32:47.849] getCompletionData: Is inside comment: 0.002611011266708374
Info 2050 [15:32:47.849] getCompletionData: Get previous token 1: 0.026663005352020264
Info 2051 [15:32:47.849] getCompletionData: Get previous token 2: 0.031260013580322266
Info 2052 [15:32:47.849] getCompletionsAtPosition: isCompletionListBlocker: 0.004406988620758057
Info 2053 [15:32:47.849] getCompletionData: Semantic work: 0.1371859908103943
Info 2054 [15:32:47.857] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2055 [15:32:47.897] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 273 structureChanged: false Elapsed: 40.120195001363754ms
Info 2056 [15:32:47.897] Different program with same set of files:: structureIsReused:: 2
Info 2057 [15:32:48.116] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2058 [15:32:48.153] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 274 structureChanged: false Elapsed: 37.699775010347366ms
Info 2059 [15:32:48.154] Different program with same set of files:: structureIsReused:: 2
Info 2060 [15:32:48.447] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2061 [15:32:48.483] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 275 structureChanged: false Elapsed: 35.43395599722862ms
Info 2062 [15:32:48.483] Different program with same set of files:: structureIsReused:: 2
Info 2063 [15:32:49.394] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2064 [15:32:49.414] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 276 structureChanged: false Elapsed: 20.46653899550438ms
Info 2065 [15:32:49.414] Different program with same set of files:: structureIsReused:: 2
Info 2066 [15:32:49.415] getCompletionData: Get current token: 0.015839993953704834
Info 2067 [15:32:49.415] getCompletionData: Is inside comment: 0.003157973289489746
Info 2068 [15:32:49.415] getCompletionData: Get previous token 1: 0.05279800295829773
Info 2069 [15:32:49.415] getCompletionData: Get previous token 2: 0.02609097957611084
Info 2070 [15:32:49.415] getCompletionsAtPosition: isCompletionListBlocker: 0.009920001029968262
Info 2071 [15:32:49.423] getSymbolsFromOtherSourceFileExports: Using cached list
Info 2072 [15:32:49.454] getCompletionData: Semantic work: 38.44455701112747
Info 2073 [15:32:49.461] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 6.769885987043381
Info 2074 [15:32:50.158] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2075 [15:32:50.192] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 277 structureChanged: false Elapsed: 33.3926460146904ms
Info 2076 [15:32:50.192] Different program with same set of files:: structureIsReused:: 2
Info 2077 [15:32:50.564] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2078 [15:32:50.599] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 278 structureChanged: false Elapsed: 35.03492400050163ms
Info 2079 [15:32:50.599] Different program with same set of files:: structureIsReused:: 2
Info 2080 [15:32:55.109] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2081 [15:32:55.131] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 279 structureChanged: false Elapsed: 21.801497995853424ms
Info 2082 [15:32:55.131] Different program with same set of files:: structureIsReused:: 2
Info 2083 [15:32:56.513] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2084 [15:32:56.561] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 280 structureChanged: false Elapsed: 48.115178018808365ms
Info 2085 [15:32:56.561] Different program with same set of files:: structureIsReused:: 2
Info 2086 [15:32:57.181] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2087 [15:32:57.210] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 281 structureChanged: false Elapsed: 28.67298299074173ms
Info 2088 [15:32:57.210] Different program with same set of files:: structureIsReused:: 2
Info 2089 [15:32:57.469] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2090 [15:32:57.512] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 282 structureChanged: false Elapsed: 42.49981001019478ms
Info 2091 [15:32:57.512] Different program with same set of files:: structureIsReused:: 2
Info 2092 [15:32:57.556] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2093 [15:32:57.585] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 283 structureChanged: false Elapsed: 29.04916000366211ms
Info 2094 [15:32:57.586] Different program with same set of files:: structureIsReused:: 2
Info 2095 [15:32:58.167] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2096 [15:32:58.203] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 284 structureChanged: false Elapsed: 36.36702299118042ms
Info 2097 [15:32:58.203] Different program with same set of files:: structureIsReused:: 2
Info 2098 [15:32:58.204] getCompletionData: Get current token: 0.04162400960922241
Info 2099 [15:32:58.204] getCompletionData: Is inside comment: 0.07466301321983337
Info 2100 [15:32:58.204] getCompletionData: Get previous token 1: 0.06036198139190674
Info 2101 [15:32:58.204] getCompletionData: Get previous token 2: 0.061610013246536255
Info 2102 [15:32:58.204] getCompletionsAtPosition: isCompletionListBlocker: 0.005172997713088989
Info 2103 [15:32:58.217] getSymbolsFromOtherSourceFileExports: Using cached list
Info 2104 [15:32:58.251] getCompletionData: Semantic work: 46.61418402194977
Info 2105 [15:32:58.307] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 17.870124012231827
Info 2106 [15:33:00.638] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2107 [15:33:00.686] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 285 structureChanged: false Elapsed: 48.36962002515793ms
Info 2108 [15:33:00.686] Different program with same set of files:: structureIsReused:: 2
Info 2109 [15:33:00.687] getCompletionData: Get current token: 0.027361005544662476
Info 2110 [15:33:00.687] getCompletionData: Is inside comment: 0.051337987184524536
Info 2111 [15:33:00.687] getCompletionData: Get previous token 1: 0.0384959876537323
Info 2112 [15:33:00.687] getCompletionData: Get previous token 2: 0.04580998420715332
Info 2113 [15:33:00.687] getCompletionsAtPosition: isCompletionListBlocker: 0.00552600622177124
Info 2114 [15:33:00.699] getSymbolsFromOtherSourceFileExports: Using cached list
Info 2115 [15:33:00.742] getCompletionData: Semantic work: 54.51909601688385
Info 2116 [15:33:00.775] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 5.3124479949474335
Info 2117 [15:33:02.203] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2118 [15:33:02.221] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 286 structureChanged: false Elapsed: 17.18207398056984ms
Info 2119 [15:33:02.221] Different program with same set of files:: structureIsReused:: 2
Info 2120 [15:33:09.278] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2121 [15:33:09.304] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 287 structureChanged: false Elapsed: 25.452715009450912ms
Info 2122 [15:33:09.304] Different program with same set of files:: structureIsReused:: 2
Info 2123 [15:33:11.315] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2124 [15:33:11.356] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 288 structureChanged: false Elapsed: 40.709975987672806ms
Info 2125 [15:33:11.356] Different program with same set of files:: structureIsReused:: 2
Info 2126 [15:33:12.282] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2127 [15:33:12.300] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 289 structureChanged: false Elapsed: 17.372331023216248ms
Info 2128 [15:33:12.300] Different program with same set of files:: structureIsReused:: 2
Info 2129 [15:33:39.581] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2130 [15:33:39.608] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 290 structureChanged: false Elapsed: 26.191965997219086ms
Info 2131 [15:33:39.608] Different program with same set of files:: structureIsReused:: 2
Info 2132 [15:33:39.852] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2133 [15:33:39.983] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 291 structureChanged: false Elapsed: 131.1242580115795ms
Info 2134 [15:33:39.983] Different program with same set of files:: structureIsReused:: 2
Info 2135 [15:33:39.984] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2136 [15:33:40.271] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 292 structureChanged: false Elapsed: 286.4694459736347ms
Info 2137 [15:33:40.271] Different program with same set of files:: structureIsReused:: 2
Info 2138 [15:33:41.129] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2139 [15:33:41.166] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 293 structureChanged: false Elapsed: 37.17959398031235ms
Info 2140 [15:33:41.166] Different program with same set of files:: structureIsReused:: 2
Info 2141 [15:33:41.167] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2142 [15:33:41.198] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 294 structureChanged: false Elapsed: 30.900031000375748ms
Info 2143 [15:33:41.199] Different program with same set of files:: structureIsReused:: 2
Info 2144 [15:33:44.226] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2145 [15:33:44.258] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 295 structureChanged: false Elapsed: 32.6593160033226ms
Info 2146 [15:33:44.258] Different program with same set of files:: structureIsReused:: 2
Info 2147 [15:33:47.502] Starting updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json
Info 2148 [15:33:47.545] Finishing updateGraphWorker: Project: /home/thomas/Projects/emacs/OrgRoamForceGraphReact/tsconfig.json Version: 296 structureChanged: false Elapsed: 42.84007200598717ms
Info 2149 [15:33:47.545] Different program with same set of files:: structureIsReused:: 2