generated from Cirru/respo-cirru-editor.cljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
5568 lines (5567 loc) · 416 KB
/
calcit.cirru
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
{} (:package |cirru-editor)
:configs $ {} (:init-fn |cirru-editor.main/main!) (:port 6001) (:reload-fn |cirru-editor.main/reload!) (:storage-key |calcit.cirru) (:version |0.6.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/
:entries $ {}
:files $ {}
|cirru-editor.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |store)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938335842) (:by |Y9S0aNaMwg) (:text |:class-name)
|b $ %{} :Leaf (:at 1691938341313) (:by |Y9S0aNaMwg) (:text |style-container)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-editor)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |store)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|on-command $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649580056919) (:by |Y9S0aNaMwg) (:text |js/console.log)
|j $ %{} :Leaf (:at 1558114909621) (:by |Y9S0aNaMwg) (:text "|\"command")
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|on-update! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:save)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|style-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1691938341772) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938342836) (:by |Y9S0aNaMwg) (:text |defstyle)
|b $ %{} :Leaf (:at 1691938341772) (:by |Y9S0aNaMwg) (:text |style-container)
|h $ %{} :Expr (:at 1691938344656) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938345189) (:by |Y9S0aNaMwg) (:text |{})
|T $ %{} :Expr (:at 1691938345680) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938347259) (:by |Y9S0aNaMwg) (:text "|\"&")
|T $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |{})
|b $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:position)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text ||absolute)
|h $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:width)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text ||100%)
|l $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:height)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text ||100%)
|o $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:display)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text ||flex)
|q $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:flex-direction)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text ||column)
|s $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |:background-color)
|b $ %{} :Expr (:at 1691938344065) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |hsl)
|b $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |0)
|h $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |0)
|l $ %{} :Leaf (:at 1691938344065) (:by |Y9S0aNaMwg) (:text |0)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |cirru-editor.comp.container)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1629653459570) (:by |Y9S0aNaMwg) (:text |respo.util.format)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|r $ %{} :Leaf (:at 1558114793133) (:by |Y9S0aNaMwg) (:text |defcomp)
|v $ %{} :Leaf (:at 1558114793133) (:by |Y9S0aNaMwg) (:text |<>)
|x $ %{} :Leaf (:at 1558114793133) (:by |Y9S0aNaMwg) (:text |div)
|y $ %{} :Leaf (:at 1558114793133) (:by |Y9S0aNaMwg) (:text |span)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |cirru-editor.comp.editor)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-editor)
|w $ %{} :Expr (:at 1691938349949) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938350976) (:by |Y9S0aNaMwg) (:text |respo.css)
|b $ %{} :Leaf (:at 1691938352030) (:by |Y9S0aNaMwg) (:text |:refer)
|h $ %{} :Expr (:at 1691938352244) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938354020) (:by |Y9S0aNaMwg) (:text |defstyle)
|cirru-editor.comp.editor $ %{} :FileEntry
:defs $ {}
|comp-editor $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-editor)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938450210) (:by |Y9S0aNaMwg) (:text |:class-name)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-editor)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938472513) (:by |Y9S0aNaMwg) (:text |:class-name)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-box)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-expression)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:tree)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |handle-update)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|x $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |[])
|y $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|yT $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |false)
|yj $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:focus)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|yr $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |handle-command)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|yv $ %{} :Leaf (:at 1630003220482) (:by |Y9S0aNaMwg) (:text |true)
|yx $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |false)
|x $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |;)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-inspect)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:bottom)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:left)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|handle-command $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |handle-command)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|handle-update $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |handle-update)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |op)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-update!)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649581712401) (:by |Y9S0aNaMwg) (:text |cirru-edit)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |snapshot)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |op)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|style-box $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938466010) (:by |Y9S0aNaMwg) (:text |defstyle)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-box)
|r $ %{} :Expr (:at 1691938466795) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938467315) (:by |Y9S0aNaMwg) (:text |{})
|T $ %{} :Expr (:at 1691938467820) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938469114) (:by |Y9S0aNaMwg) (:text "|\"&")
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:flex)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |1)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:overflow-y)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text ||auto)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text "||100px 0 200px 0")
|style-editor $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938439993) (:by |Y9S0aNaMwg) (:text |defstyle)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-editor)
|r $ %{} :Expr (:at 1691938440800) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938442563) (:by |Y9S0aNaMwg) (:text |{})
|T $ %{} :Expr (:at 1691938442958) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938444121) (:by |Y9S0aNaMwg) (:text "|\"&")
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text "||8px 8px 8px 8px")
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:min-height)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text ||200px)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:display)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text ||flex)
|x $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:flex-direction)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text ||column)
|y $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:position)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text ||relative)
|yT $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:flex)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |1)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |cirru-editor.comp.editor)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |hsl.core)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|r $ %{} :Leaf (:at 1558114810355) (:by |Y9S0aNaMwg) (:text |defcomp)
|v $ %{} :Leaf (:at 1558114810355) (:by |Y9S0aNaMwg) (:text |<>)
|x $ %{} :Leaf (:at 1558114810355) (:by |Y9S0aNaMwg) (:text |div)
|y $ %{} :Leaf (:at 1558114810355) (:by |Y9S0aNaMwg) (:text |style)
|yT $ %{} :Leaf (:at 1558114810355) (:by |Y9S0aNaMwg) (:text |span)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |respo.comp.inspect)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-inspect)
|x $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |=<)
|y $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1649581786119) (:by |Y9S0aNaMwg) (:text |cirru-editor.core)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1649581715553) (:by |Y9S0aNaMwg) (:text |cirru-edit)
|yT $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |cirru-editor.comp.expression)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-expression)
|z $ %{} :Expr (:at 1691938455069) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938457951) (:by |Y9S0aNaMwg) (:text |respo.css)
|b $ %{} :Leaf (:at 1691938459405) (:by |Y9S0aNaMwg) (:text |:refer)
|h $ %{} :Expr (:at 1691938459666) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938460682) (:by |Y9S0aNaMwg) (:text |defstyle)
|cirru-editor.comp.expression $ %{} :FileEntry
:defs $ {}
|comp-expression $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-expression)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |expression)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |level)
|y $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |tail?)
|yT $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|yj $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|yr $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |head?)
|yv $ %{} :Leaf (:at 1613812728291) (:by |Y9S0aNaMwg) (:text |inline?)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |exp-size)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |count)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |expression)
|b $ %{} :Expr (:at 1629654909559) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629654910668) (:by |Y9S0aNaMwg) (:text |cursor)
|j $ %{} :Expr (:at 1629654911808) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629654913243) (:by |Y9S0aNaMwg) (:text |:cursor)
|j $ %{} :Leaf (:at 1629654913967) (:by |Y9S0aNaMwg) (:text |states)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |state)
|j $ %{} :Expr (:at 1630003178419) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630003178419) (:by |Y9S0aNaMwg) (:text |either)
|j $ %{} :Expr (:at 1630003178419) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630003178419) (:by |Y9S0aNaMwg) (:text |:data)
|j $ %{} :Leaf (:at 1630003178419) (:by |Y9S0aNaMwg) (:text |states)
|r $ %{} :Leaf (:at 1630003178419) (:by |Y9S0aNaMwg) (:text |false)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |state)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1691938416948) (:by |Y9S0aNaMwg) (:text |:class-name)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-folded)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649580289933) (:by |Y9S0aNaMwg) (:text |:on-click)
|j $ %{} :Expr (:at 1629654902608) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629654902608) (:by |Y9S0aNaMwg) (:text |fn)
|j $ %{} :Expr (:at 1629654902608) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629654902608) (:by |Y9S0aNaMwg) (:text |e)
|j $ %{} :Leaf (:at 1629654902608) (:by |Y9S0aNaMwg) (:text |dispatch!)
|r $ %{} :Expr (:at 1629654902608) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629655326622) (:by |Y9S0aNaMwg) (:text |dispatch!)
|j $ %{} :Expr (:at 1689393531867) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1689393532452) (:by |Y9S0aNaMwg) (:text |::)
|L $ %{} :Leaf (:at 1689393534575) (:by |Y9S0aNaMwg) (:text |:states)
|P $ %{} :Leaf (:at 1689393535211) (:by |Y9S0aNaMwg) (:text |cursor)
|T $ %{} :Expr (:at 1629654902608) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629654902608) (:by |Y9S0aNaMwg) (:text |not)
|j $ %{} :Leaf (:at 1629654902608) (:by |Y9S0aNaMwg) (:text |state)
|t $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649580293564) (:by |Y9S0aNaMwg) (:text |:on-keydown)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-keydown)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |state)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|y $ %{} :Leaf (:at 1629655507405) (:by |Y9S0aNaMwg) (:text |cursor)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |<>)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |first)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |expression)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |nil)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at 1510587854186) (:by |root) (:text |list->)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:tab-index)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:class-name)
|j $ %{} :Expr (:at 1691938851210) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1691938853951) (:by |Y9S0aNaMwg) (:text |str-spaced)
|L $ %{} :Leaf (:at 1691938879649) (:by |Y9S0aNaMwg) (:text |style-expression)
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|r $ %{} :Leaf (:at 1691938887440) (:by |Y9S0aNaMwg) (:text ||editor-focused)
|v $ %{} :Leaf (:at 1691938883056) (:by |Y9S0aNaMwg) (:text "|\"")
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |merge)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|f $ %{} :Leaf (:at 1613812723609) (:by |Y9S0aNaMwg) (:text |inline?)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-inline)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |and)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |tail?)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |not)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |head?)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |pos?)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |level)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |style-tail)
|x $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:border-color)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |100)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |0.6)
|y $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649580321031) (:by |Y9S0aNaMwg) (:text |:on-click)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-click)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|z $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1649580323921) (:by |Y9S0aNaMwg) (:text |:on-keydown)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-keydown)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |state)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|y $ %{} :Leaf (:at 1629655538369) (:by |Y9S0aNaMwg) (:text |cursor)
|r $ %{} :Expr (:at 1630003631043) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1630003634091) (:by |Y9S0aNaMwg) (:text |apply-args)
|L $ %{} :Expr (:at 1630003634664) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Expr (:at 1630003636507) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630003636071) (:by |Y9S0aNaMwg) (:text |[])
|j $ %{} :Leaf (:at 1630003640058) (:by |Y9S0aNaMwg) (:text |0)
|r $ %{} :Leaf (:at 1630003661916) (:by |Y9S0aNaMwg) (:text |expression)
|v $ %{} :Leaf (:at 1630003662671) (:by |Y9S0aNaMwg) (:text |nil)
|T $ %{} :Expr (:at 1630003619471) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1630003622252) (:by |Y9S0aNaMwg) (:text |fn)
|L $ %{} :Expr (:at 1630003622619) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630003623113) (:by |Y9S0aNaMwg) (:text |acc)
|j $ %{} :Leaf (:at 1630003624332) (:by |Y9S0aNaMwg) (:text |idx)
|r $ %{} :Leaf (:at 1630003625186) (:by |Y9S0aNaMwg) (:text |expr)
|v $ %{} :Leaf (:at 1630003628857) (:by |Y9S0aNaMwg) (:text |prev-kind)
|T $ %{} :Expr (:at 1510373767156) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1691938236620) (:by |Y9S0aNaMwg) (:text |list-match)
|b $ %{} :Leaf (:at 1691938240529) (:by |Y9S0aNaMwg) (:text |expr)
|r $ %{} :Expr (:at 1691938242097) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Expr (:at 1691938243282) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |acc)
|v $ %{} :Expr (:at 1691938247585) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Expr (:at 1691938248576) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1691938249425) (:by |Y9S0aNaMwg) (:text |item)
|b $ %{} :Leaf (:at 1691938264267) (:by |Y9S0aNaMwg) (:text |es)
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|b $ %{} :Expr (:at 1613812800876) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812803492) (:by |Y9S0aNaMwg) (:text |kind)
|j $ %{} :Expr (:at 1613812803686) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812805261) (:by |Y9S0aNaMwg) (:text |if)
|j $ %{} :Expr (:at 1613812812756) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812814781) (:by |Y9S0aNaMwg) (:text |string?)
|j $ %{} :Leaf (:at 1613812815469) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613812819414) (:by |Y9S0aNaMwg) (:text |:leaf)
|v $ %{} :Expr (:at 1613812820785) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812821201) (:by |Y9S0aNaMwg) (:text |if)
|j $ %{} :Expr (:at 1613812834492) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1613812835317) (:by |Y9S0aNaMwg) (:text |and)
|T $ %{} :Expr (:at 1613812826355) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812862044) (:by |Y9S0aNaMwg) (:text |<=)
|j $ %{} :Expr (:at 1613812830758) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812828057) (:by |Y9S0aNaMwg) (:text |count)
|j $ %{} :Leaf (:at 1613812831414) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613813242552) (:by |Y9S0aNaMwg) (:text |1)
|j $ %{} :Expr (:at 1613812835991) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812837640) (:by |Y9S0aNaMwg) (:text |string?)
|j $ %{} :Expr (:at 1613812839293) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812839916) (:by |Y9S0aNaMwg) (:text |first)
|j $ %{} :Leaf (:at 1613812840627) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613812866427) (:by |Y9S0aNaMwg) (:text |:leaf)
|v $ %{} :Expr (:at 1613812867271) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1629653514640) (:by |Y9S0aNaMwg) (:text |case-default)
|j $ %{} :Leaf (:at 1613812885169) (:by |Y9S0aNaMwg) (:text |prev-kind)
|n $ %{} :Leaf (:at 1629653515996) (:by |Y9S0aNaMwg) (:text |:expr)
|r $ %{} :Expr (:at 1613812885413) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812887812) (:by |Y9S0aNaMwg) (:text |:expr)
|j $ %{} :Leaf (:at 1613812904131) (:by |Y9S0aNaMwg) (:text |:expr)
|v $ %{} :Expr (:at 1613812888187) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812897108) (:by |Y9S0aNaMwg) (:text |:inline-expr)
|j $ %{} :Expr (:at 1613812905322) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812905955) (:by |Y9S0aNaMwg) (:text |if)
|j $ %{} :Expr (:at 1630004815467) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1630005082441) (:by |Y9S0aNaMwg) (:text |and)
|T $ %{} :Expr (:at 1613812928331) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630005101533) (:by |Y9S0aNaMwg) (:text |<=)
|j $ %{} :Expr (:at 1613812928855) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812930444) (:by |Y9S0aNaMwg) (:text |count)
|j $ %{} :Leaf (:at 1613812931038) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613812932434) (:by |Y9S0aNaMwg) (:text |2)
|j $ %{} :Expr (:at 1630004817106) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630005041595) (:by |Y9S0aNaMwg) (:text |every?)
|j $ %{} :Leaf (:at 1630004819758) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1630004821255) (:by |Y9S0aNaMwg) (:text |string?)
|v $ %{} :Leaf (:at 1613812936875) (:by |Y9S0aNaMwg) (:text |:inline-expr)
|x $ %{} :Leaf (:at 1630005099628) (:by |Y9S0aNaMwg) (:text |:expr)
|w $ %{} :Expr (:at 1613812923293) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812926559) (:by |Y9S0aNaMwg) (:text |:leaf)
|j $ %{} :Expr (:at 1613812942127) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812942127) (:by |Y9S0aNaMwg) (:text |if)
|j $ %{} :Expr (:at 1630004801216) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1630005080777) (:by |Y9S0aNaMwg) (:text |and)
|T $ %{} :Expr (:at 1613812942127) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630005109567) (:by |Y9S0aNaMwg) (:text |<=)
|j $ %{} :Expr (:at 1613812942127) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812942127) (:by |Y9S0aNaMwg) (:text |count)
|j $ %{} :Leaf (:at 1613812942127) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613812948373) (:by |Y9S0aNaMwg) (:text |6)
|j $ %{} :Expr (:at 1630004806383) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630004809230) (:by |Y9S0aNaMwg) (:text |every?)
|j $ %{} :Leaf (:at 1630004809971) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1630004811542) (:by |Y9S0aNaMwg) (:text |string?)
|n $ %{} :Leaf (:at 1630005113565) (:by |Y9S0aNaMwg) (:text |:inline-expr)
|r $ %{} :Leaf (:at 1613812942127) (:by |Y9S0aNaMwg) (:text |:expr)
|wT $ %{} :Expr (:at 1613812944035) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812944375) (:by |Y9S0aNaMwg) (:text |nil)
|j $ %{} :Expr (:at 1613812945549) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812945549) (:by |Y9S0aNaMwg) (:text |if)
|j $ %{} :Expr (:at 1630004779772) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1630005078561) (:by |Y9S0aNaMwg) (:text |and)
|T $ %{} :Expr (:at 1613812945549) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630005117113) (:by |Y9S0aNaMwg) (:text |<=)
|j $ %{} :Expr (:at 1613812945549) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812945549) (:by |Y9S0aNaMwg) (:text |count)
|j $ %{} :Leaf (:at 1613812945549) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Leaf (:at 1613812947311) (:by |Y9S0aNaMwg) (:text |6)
|j $ %{} :Expr (:at 1630004781233) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1630004782417) (:by |Y9S0aNaMwg) (:text |every?)
|b $ %{} :Leaf (:at 1630004785873) (:by |Y9S0aNaMwg) (:text |item)
|j $ %{} :Leaf (:at 1630004784247) (:by |Y9S0aNaMwg) (:text |string?)
|n $ %{} :Leaf (:at 1630005119600) (:by |Y9S0aNaMwg) (:text |:inline-expr)
|r $ %{} :Leaf (:at 1613812945549) (:by |Y9S0aNaMwg) (:text |:expr)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |pair)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |idx)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-coord)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |conj)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |idx)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-focus)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord-contains?)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |nil)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-head?)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |zero?)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |idx)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |string?)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |item)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-token)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |item)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-coord)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-focus)
|y $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|yT $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-head?)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |comp-expression)
|v $ %{} :Expr (:at 1585156988199) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1585156988862) (:by |Y9S0aNaMwg) (:text |>>)
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1585156989941) (:by |Y9S0aNaMwg) (:text |idx)
|x $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |item)
|y $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|yT $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-coord)
|yj $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |inc)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |level)
|yr $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |and)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |not)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |tail?)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |=)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dec)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |exp-size)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |idx)
|v $ %{} :Expr (:at 1613813039820) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613813041218) (:by |Y9S0aNaMwg) (:text |=)
|j $ %{} :Leaf (:at 1613813042543) (:by |Y9S0aNaMwg) (:text |prev-kind)
|r $ %{} :Leaf (:at 1613813045052) (:by |Y9S0aNaMwg) (:text |:leaf)
|yv $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-focus)
|yx $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-command)
|yy $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |child-head?)
|yyT $ %{} :Expr (:at 1613813152669) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1613813153308) (:by |Y9S0aNaMwg) (:text |or)
|T $ %{} :Expr (:at 1613812962913) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812963468) (:by |Y9S0aNaMwg) (:text |=)
|b $ %{} :Leaf (:at 1613812970839) (:by |Y9S0aNaMwg) (:text |kind)
|j $ %{} :Leaf (:at 1613812968696) (:by |Y9S0aNaMwg) (:text |:inline-expr)
|j $ %{} :Expr (:at 1613812962913) (:by |Y9S0aNaMwg)
:data $ {}
|T $ %{} :Leaf (:at 1613812963468) (:by |Y9S0aNaMwg) (:text |=)
|b $ %{} :Leaf (:at 1613812970839) (:by |Y9S0aNaMwg) (:text |kind)
|j $ %{} :Leaf (:at 1613813157261) (:by |Y9S0aNaMwg) (:text |:leaf)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |next-acc)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |conj)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |acc)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |pair)
|n $ %{} :Expr (:at 1613813095860) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1613813280870) (:by |Y9S0aNaMwg) (:text |;)
|T $ %{} :Leaf (:at 1613813096749) (:by |Y9S0aNaMwg) (:text |println)
|j $ %{} :Leaf (:at 1613813103340) (:by |Y9S0aNaMwg) (:text "|\"kinds:")
|r $ %{} :Leaf (:at 1613813106114) (:by |Y9S0aNaMwg) (:text |prev-kind)
|v $ %{} :Leaf (:at 1613813106855) (:by |Y9S0aNaMwg) (:text |kind)
|x $ %{} :Leaf (:at 1613813117762) (:by |Y9S0aNaMwg) (:text "|\" at ")
|y $ %{} :Leaf (:at 1613813127068) (:by |Y9S0aNaMwg) (:text |item)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |recur)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |next-acc)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |inc)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |idx)
|u $ %{} :Leaf (:at 1691938267930) (:by |Y9S0aNaMwg) (:text |es)
|x $ %{} :Leaf (:at 1613812766495) (:by |Y9S0aNaMwg) (:text |kind)
|on-click $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-click)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |not=)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |focus)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|j $ %{} :Expr (:at 1689881406354) (:by |Y9S0aNaMwg)
:data $ {}
|D $ %{} :Leaf (:at 1689881407032) (:by |Y9S0aNaMwg) (:text |::)
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:focus-to)
|b $ %{} :Leaf (:at 1689881408464) (:by |Y9S0aNaMwg) (:text |coord)
|v $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|on-keydown $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |on-keydown)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |state)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |modify!)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |coord)
|v $ %{} :Leaf (:at 1629655496546) (:by |Y9S0aNaMwg) (:text |on-command)
|x $ %{} :Leaf (:at 1629655497850) (:by |Y9S0aNaMwg) (:text |cursor)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |code)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:key-code)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |event)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |:original-event)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |e)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |shift?)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |.-shiftKey)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |event)
|v $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |command?)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |or)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |.-metaKey)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |event)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |.-ctrlKey)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |event)
|r $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |cond)
|j $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1506616926005) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |code)
|r $ %{} :Leaf (:at 1506616926005) (:by |root) (:text |keycode/space)
|j $ %{} :Expr (:at 1506616926005) (:by nil)