@digipair/skill-web-chatbot 0.114.2 → 0.114.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/index.cjs.js +2118 -8
  2. package/dist/index.esm2.js +5 -5
  3. package/package.json +6 -2
  4. package/dist/SAP-icons.cjs.js +0 -2489
  5. package/dist/SAP-icons.cjs2.js +0 -2489
  6. package/dist/Tableau10-558cc280.cjs.js +0 -9
  7. package/dist/arc-d1f6357e.cjs.js +0 -88
  8. package/dist/array-2ff2c7a6.cjs.js +0 -11
  9. package/dist/blockDiagram-5dc23a45.cjs.js +0 -2916
  10. package/dist/c4Diagram-1e775db3.cjs.js +0 -4386
  11. package/dist/channel-ebbc4130.cjs.js +0 -9
  12. package/dist/classDiagram-f52caa06.cjs.js +0 -209
  13. package/dist/classDiagram-v2-640c694e.cjs.js +0 -401
  14. package/dist/clone-afc2f047.cjs.js +0 -10
  15. package/dist/createText-03b82060.cjs.js +0 -2940
  16. package/dist/edges-16357fde.cjs.js +0 -2002
  17. package/dist/erDiagram-c7ff1bec.cjs.js +0 -1807
  18. package/dist/flowDb-9a89ea33.cjs.js +0 -5542
  19. package/dist/flowDiagram-aadb13b0.cjs.js +0 -1351
  20. package/dist/flowDiagram-v2-f2119625.cjs.js +0 -31
  21. package/dist/flowchart-elk-definition-cf813a97.cjs.js +0 -50248
  22. package/dist/ganttDiagram-3c2fde2b.cjs.js +0 -3710
  23. package/dist/gitGraphDiagram-c3a0619c.cjs.js +0 -3815
  24. package/dist/graph-0ee63739.cjs.js +0 -954
  25. package/dist/index-bb6d8841.cjs.js +0 -648
  26. package/dist/index.cjs2.js +0 -76743
  27. package/dist/infoDiagram-2f5c50c0.cjs.js +0 -460
  28. package/dist/init-f9637058.cjs.js +0 -17
  29. package/dist/journeyDiagram-14fe341a.cjs.js +0 -1061
  30. package/dist/katex-d90b6d29.cjs.js +0 -25690
  31. package/dist/layout-fd473db2.cjs.js +0 -1613
  32. package/dist/line-24d93f1b.cjs.js +0 -34
  33. package/dist/linear-9bcf74c4.cjs.js +0 -537
  34. package/dist/mindmap-definition-9399c7e6.cjs.js +0 -20488
  35. package/dist/ordinal-5695958c.cjs.js +0 -330
  36. package/dist/path-428ebac9.cjs.js +0 -316
  37. package/dist/pieDiagram-828dae43.cjs.js +0 -949
  38. package/dist/quadrantDiagram-5fa00455.cjs.js +0 -2409
  39. package/dist/requirementDiagram-03163dc4.cjs.js +0 -2267
  40. package/dist/sankeyDiagram-52ec8976.cjs.js +0 -1848
  41. package/dist/sequenceDiagram-b517d154.cjs.js +0 -5948
  42. package/dist/stateDiagram-fca82b5b.cjs.js +0 -283
  43. package/dist/stateDiagram-v2-ed04200a.cjs.js +0 -373
  44. package/dist/styles-11e81fdd.cjs.js +0 -3943
  45. package/dist/styles-cacbff60.cjs.js +0 -2120
  46. package/dist/styles-e75131e4.cjs.js +0 -671
  47. package/dist/svgDrawCommon-ecc5f780.cjs.js +0 -68
  48. package/dist/timeline-definition-4ee9bff4.cjs.js +0 -1161
  49. package/dist/xychartDiagram-e5e6b652.cjs.js +0 -3150
@@ -1,3943 +0,0 @@
1
- 'use strict';
2
-
3
- var index = require('./index.cjs2.js');
4
-
5
- function _array_like_to_array(arr, len) {
6
- if (len == null || len > arr.length) len = arr.length;
7
- for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
8
- return arr2;
9
- }
10
- function _array_without_holes(arr) {
11
- if (Array.isArray(arr)) return _array_like_to_array(arr);
12
- }
13
- function _class_call_check(instance, Constructor) {
14
- if (!(instance instanceof Constructor)) {
15
- throw new TypeError("Cannot call a class as a function");
16
- }
17
- }
18
- function _defineProperties(target, props) {
19
- for(var i = 0; i < props.length; i++){
20
- var descriptor = props[i];
21
- descriptor.enumerable = descriptor.enumerable || false;
22
- descriptor.configurable = true;
23
- if ("value" in descriptor) descriptor.writable = true;
24
- Object.defineProperty(target, descriptor.key, descriptor);
25
- }
26
- }
27
- function _create_class(Constructor, protoProps, staticProps) {
28
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
29
- return Constructor;
30
- }
31
- function _instanceof(left, right) {
32
- if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
33
- return !!right[Symbol.hasInstance](left);
34
- } else {
35
- return left instanceof right;
36
- }
37
- }
38
- function _iterable_to_array(iter) {
39
- if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
40
- }
41
- function _non_iterable_spread() {
42
- throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
43
- }
44
- function _to_consumable_array(arr) {
45
- return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
46
- }
47
- function _type_of(obj) {
48
- "@swc/helpers - typeof";
49
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
50
- }
51
- function _unsupported_iterable_to_array(o, minLen) {
52
- if (!o) return;
53
- if (typeof o === "string") return _array_like_to_array(o, minLen);
54
- var n = Object.prototype.toString.call(o).slice(8, -1);
55
- if (n === "Object" && o.constructor) n = o.constructor.name;
56
- if (n === "Map" || n === "Set") return Array.from(n);
57
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
58
- }
59
- var Ve = function() {
60
- var e = function e(x, u, a, h) {
61
- for(a = a || {}, h = x.length; h--; a[x[h]] = u);
62
- return a;
63
- }, i = [
64
- 1,
65
- 17
66
- ], r = [
67
- 1,
68
- 18
69
- ], l = [
70
- 1,
71
- 19
72
- ], o = [
73
- 1,
74
- 39
75
- ], A = [
76
- 1,
77
- 40
78
- ], g = [
79
- 1,
80
- 25
81
- ], D = [
82
- 1,
83
- 23
84
- ], B = [
85
- 1,
86
- 24
87
- ], _ = [
88
- 1,
89
- 31
90
- ], fe = [
91
- 1,
92
- 32
93
- ], de = [
94
- 1,
95
- 33
96
- ], Ee = [
97
- 1,
98
- 34
99
- ], Ce = [
100
- 1,
101
- 35
102
- ], me = [
103
- 1,
104
- 36
105
- ], be = [
106
- 1,
107
- 26
108
- ], ge = [
109
- 1,
110
- 27
111
- ], ke = [
112
- 1,
113
- 28
114
- ], Te = [
115
- 1,
116
- 29
117
- ], d = [
118
- 1,
119
- 43
120
- ], Fe = [
121
- 1,
122
- 30
123
- ], E = [
124
- 1,
125
- 42
126
- ], C = [
127
- 1,
128
- 44
129
- ], m = [
130
- 1,
131
- 41
132
- ], k = [
133
- 1,
134
- 45
135
- ], ye = [
136
- 1,
137
- 9
138
- ], c = [
139
- 1,
140
- 8,
141
- 9
142
- ], Y = [
143
- 1,
144
- 56
145
- ], j = [
146
- 1,
147
- 57
148
- ], Q = [
149
- 1,
150
- 58
151
- ], X = [
152
- 1,
153
- 59
154
- ], H = [
155
- 1,
156
- 60
157
- ], De = [
158
- 1,
159
- 61
160
- ], Be = [
161
- 1,
162
- 62
163
- ], W = [
164
- 1,
165
- 8,
166
- 9,
167
- 39
168
- ], Ge = [
169
- 1,
170
- 74
171
- ], M = [
172
- 1,
173
- 8,
174
- 9,
175
- 12,
176
- 13,
177
- 21,
178
- 37,
179
- 39,
180
- 42,
181
- 59,
182
- 60,
183
- 61,
184
- 62,
185
- 63,
186
- 64,
187
- 65,
188
- 70,
189
- 72
190
- ], q = [
191
- 1,
192
- 8,
193
- 9,
194
- 12,
195
- 13,
196
- 19,
197
- 21,
198
- 37,
199
- 39,
200
- 42,
201
- 46,
202
- 59,
203
- 60,
204
- 61,
205
- 62,
206
- 63,
207
- 64,
208
- 65,
209
- 70,
210
- 72,
211
- 74,
212
- 80,
213
- 95,
214
- 97,
215
- 98
216
- ], J = [
217
- 13,
218
- 74,
219
- 80,
220
- 95,
221
- 97,
222
- 98
223
- ], G = [
224
- 13,
225
- 64,
226
- 65,
227
- 74,
228
- 80,
229
- 95,
230
- 97,
231
- 98
232
- ], Ue = [
233
- 13,
234
- 59,
235
- 60,
236
- 61,
237
- 62,
238
- 63,
239
- 74,
240
- 80,
241
- 95,
242
- 97,
243
- 98
244
- ], _e = [
245
- 1,
246
- 93
247
- ], Z = [
248
- 1,
249
- 110
250
- ], $ = [
251
- 1,
252
- 108
253
- ], ee = [
254
- 1,
255
- 102
256
- ], te = [
257
- 1,
258
- 103
259
- ], se = [
260
- 1,
261
- 104
262
- ], ie = [
263
- 1,
264
- 105
265
- ], ne = [
266
- 1,
267
- 106
268
- ], ue = [
269
- 1,
270
- 107
271
- ], re = [
272
- 1,
273
- 109
274
- ], Se = [
275
- 1,
276
- 8,
277
- 9,
278
- 37,
279
- 39,
280
- 42
281
- ], ae = [
282
- 1,
283
- 8,
284
- 9,
285
- 21
286
- ], ze = [
287
- 1,
288
- 8,
289
- 9,
290
- 78
291
- ], S = [
292
- 1,
293
- 8,
294
- 9,
295
- 21,
296
- 73,
297
- 74,
298
- 78,
299
- 80,
300
- 81,
301
- 82,
302
- 83,
303
- 84,
304
- 85
305
- ], Ne = {
306
- trace: function trace() {},
307
- yy: {},
308
- symbols_: {
309
- error: 2,
310
- start: 3,
311
- mermaidDoc: 4,
312
- statements: 5,
313
- graphConfig: 6,
314
- CLASS_DIAGRAM: 7,
315
- NEWLINE: 8,
316
- EOF: 9,
317
- statement: 10,
318
- classLabel: 11,
319
- SQS: 12,
320
- STR: 13,
321
- SQE: 14,
322
- namespaceName: 15,
323
- alphaNumToken: 16,
324
- className: 17,
325
- classLiteralName: 18,
326
- GENERICTYPE: 19,
327
- relationStatement: 20,
328
- LABEL: 21,
329
- namespaceStatement: 22,
330
- classStatement: 23,
331
- memberStatement: 24,
332
- annotationStatement: 25,
333
- clickStatement: 26,
334
- styleStatement: 27,
335
- cssClassStatement: 28,
336
- noteStatement: 29,
337
- direction: 30,
338
- acc_title: 31,
339
- acc_title_value: 32,
340
- acc_descr: 33,
341
- acc_descr_value: 34,
342
- acc_descr_multiline_value: 35,
343
- namespaceIdentifier: 36,
344
- STRUCT_START: 37,
345
- classStatements: 38,
346
- STRUCT_STOP: 39,
347
- NAMESPACE: 40,
348
- classIdentifier: 41,
349
- STYLE_SEPARATOR: 42,
350
- members: 43,
351
- CLASS: 44,
352
- ANNOTATION_START: 45,
353
- ANNOTATION_END: 46,
354
- MEMBER: 47,
355
- SEPARATOR: 48,
356
- relation: 49,
357
- NOTE_FOR: 50,
358
- noteText: 51,
359
- NOTE: 52,
360
- direction_tb: 53,
361
- direction_bt: 54,
362
- direction_rl: 55,
363
- direction_lr: 56,
364
- relationType: 57,
365
- lineType: 58,
366
- AGGREGATION: 59,
367
- EXTENSION: 60,
368
- COMPOSITION: 61,
369
- DEPENDENCY: 62,
370
- LOLLIPOP: 63,
371
- LINE: 64,
372
- DOTTED_LINE: 65,
373
- CALLBACK: 66,
374
- LINK: 67,
375
- LINK_TARGET: 68,
376
- CLICK: 69,
377
- CALLBACK_NAME: 70,
378
- CALLBACK_ARGS: 71,
379
- HREF: 72,
380
- STYLE: 73,
381
- ALPHA: 74,
382
- stylesOpt: 75,
383
- CSSCLASS: 76,
384
- style: 77,
385
- COMMA: 78,
386
- styleComponent: 79,
387
- NUM: 80,
388
- COLON: 81,
389
- UNIT: 82,
390
- SPACE: 83,
391
- BRKT: 84,
392
- PCT: 85,
393
- commentToken: 86,
394
- textToken: 87,
395
- graphCodeTokens: 88,
396
- textNoTagsToken: 89,
397
- TAGSTART: 90,
398
- TAGEND: 91,
399
- "==": 92,
400
- "--": 93,
401
- DEFAULT: 94,
402
- MINUS: 95,
403
- keywords: 96,
404
- UNICODE_TEXT: 97,
405
- BQUOTE_STR: 98,
406
- $accept: 0,
407
- $end: 1
408
- },
409
- terminals_: {
410
- 2: "error",
411
- 7: "CLASS_DIAGRAM",
412
- 8: "NEWLINE",
413
- 9: "EOF",
414
- 12: "SQS",
415
- 13: "STR",
416
- 14: "SQE",
417
- 19: "GENERICTYPE",
418
- 21: "LABEL",
419
- 31: "acc_title",
420
- 32: "acc_title_value",
421
- 33: "acc_descr",
422
- 34: "acc_descr_value",
423
- 35: "acc_descr_multiline_value",
424
- 37: "STRUCT_START",
425
- 39: "STRUCT_STOP",
426
- 40: "NAMESPACE",
427
- 42: "STYLE_SEPARATOR",
428
- 44: "CLASS",
429
- 45: "ANNOTATION_START",
430
- 46: "ANNOTATION_END",
431
- 47: "MEMBER",
432
- 48: "SEPARATOR",
433
- 50: "NOTE_FOR",
434
- 52: "NOTE",
435
- 53: "direction_tb",
436
- 54: "direction_bt",
437
- 55: "direction_rl",
438
- 56: "direction_lr",
439
- 59: "AGGREGATION",
440
- 60: "EXTENSION",
441
- 61: "COMPOSITION",
442
- 62: "DEPENDENCY",
443
- 63: "LOLLIPOP",
444
- 64: "LINE",
445
- 65: "DOTTED_LINE",
446
- 66: "CALLBACK",
447
- 67: "LINK",
448
- 68: "LINK_TARGET",
449
- 69: "CLICK",
450
- 70: "CALLBACK_NAME",
451
- 71: "CALLBACK_ARGS",
452
- 72: "HREF",
453
- 73: "STYLE",
454
- 74: "ALPHA",
455
- 76: "CSSCLASS",
456
- 78: "COMMA",
457
- 80: "NUM",
458
- 81: "COLON",
459
- 82: "UNIT",
460
- 83: "SPACE",
461
- 84: "BRKT",
462
- 85: "PCT",
463
- 88: "graphCodeTokens",
464
- 90: "TAGSTART",
465
- 91: "TAGEND",
466
- 92: "==",
467
- 93: "--",
468
- 94: "DEFAULT",
469
- 95: "MINUS",
470
- 96: "keywords",
471
- 97: "UNICODE_TEXT",
472
- 98: "BQUOTE_STR"
473
- },
474
- productions_: [
475
- 0,
476
- [
477
- 3,
478
- 1
479
- ],
480
- [
481
- 3,
482
- 1
483
- ],
484
- [
485
- 4,
486
- 1
487
- ],
488
- [
489
- 6,
490
- 4
491
- ],
492
- [
493
- 5,
494
- 1
495
- ],
496
- [
497
- 5,
498
- 2
499
- ],
500
- [
501
- 5,
502
- 3
503
- ],
504
- [
505
- 11,
506
- 3
507
- ],
508
- [
509
- 15,
510
- 1
511
- ],
512
- [
513
- 15,
514
- 2
515
- ],
516
- [
517
- 17,
518
- 1
519
- ],
520
- [
521
- 17,
522
- 1
523
- ],
524
- [
525
- 17,
526
- 2
527
- ],
528
- [
529
- 17,
530
- 2
531
- ],
532
- [
533
- 17,
534
- 2
535
- ],
536
- [
537
- 10,
538
- 1
539
- ],
540
- [
541
- 10,
542
- 2
543
- ],
544
- [
545
- 10,
546
- 1
547
- ],
548
- [
549
- 10,
550
- 1
551
- ],
552
- [
553
- 10,
554
- 1
555
- ],
556
- [
557
- 10,
558
- 1
559
- ],
560
- [
561
- 10,
562
- 1
563
- ],
564
- [
565
- 10,
566
- 1
567
- ],
568
- [
569
- 10,
570
- 1
571
- ],
572
- [
573
- 10,
574
- 1
575
- ],
576
- [
577
- 10,
578
- 1
579
- ],
580
- [
581
- 10,
582
- 2
583
- ],
584
- [
585
- 10,
586
- 2
587
- ],
588
- [
589
- 10,
590
- 1
591
- ],
592
- [
593
- 22,
594
- 4
595
- ],
596
- [
597
- 22,
598
- 5
599
- ],
600
- [
601
- 36,
602
- 2
603
- ],
604
- [
605
- 38,
606
- 1
607
- ],
608
- [
609
- 38,
610
- 2
611
- ],
612
- [
613
- 38,
614
- 3
615
- ],
616
- [
617
- 23,
618
- 1
619
- ],
620
- [
621
- 23,
622
- 3
623
- ],
624
- [
625
- 23,
626
- 4
627
- ],
628
- [
629
- 23,
630
- 6
631
- ],
632
- [
633
- 41,
634
- 2
635
- ],
636
- [
637
- 41,
638
- 3
639
- ],
640
- [
641
- 25,
642
- 4
643
- ],
644
- [
645
- 43,
646
- 1
647
- ],
648
- [
649
- 43,
650
- 2
651
- ],
652
- [
653
- 24,
654
- 1
655
- ],
656
- [
657
- 24,
658
- 2
659
- ],
660
- [
661
- 24,
662
- 1
663
- ],
664
- [
665
- 24,
666
- 1
667
- ],
668
- [
669
- 20,
670
- 3
671
- ],
672
- [
673
- 20,
674
- 4
675
- ],
676
- [
677
- 20,
678
- 4
679
- ],
680
- [
681
- 20,
682
- 5
683
- ],
684
- [
685
- 29,
686
- 3
687
- ],
688
- [
689
- 29,
690
- 2
691
- ],
692
- [
693
- 30,
694
- 1
695
- ],
696
- [
697
- 30,
698
- 1
699
- ],
700
- [
701
- 30,
702
- 1
703
- ],
704
- [
705
- 30,
706
- 1
707
- ],
708
- [
709
- 49,
710
- 3
711
- ],
712
- [
713
- 49,
714
- 2
715
- ],
716
- [
717
- 49,
718
- 2
719
- ],
720
- [
721
- 49,
722
- 1
723
- ],
724
- [
725
- 57,
726
- 1
727
- ],
728
- [
729
- 57,
730
- 1
731
- ],
732
- [
733
- 57,
734
- 1
735
- ],
736
- [
737
- 57,
738
- 1
739
- ],
740
- [
741
- 57,
742
- 1
743
- ],
744
- [
745
- 58,
746
- 1
747
- ],
748
- [
749
- 58,
750
- 1
751
- ],
752
- [
753
- 26,
754
- 3
755
- ],
756
- [
757
- 26,
758
- 4
759
- ],
760
- [
761
- 26,
762
- 3
763
- ],
764
- [
765
- 26,
766
- 4
767
- ],
768
- [
769
- 26,
770
- 4
771
- ],
772
- [
773
- 26,
774
- 5
775
- ],
776
- [
777
- 26,
778
- 3
779
- ],
780
- [
781
- 26,
782
- 4
783
- ],
784
- [
785
- 26,
786
- 4
787
- ],
788
- [
789
- 26,
790
- 5
791
- ],
792
- [
793
- 26,
794
- 4
795
- ],
796
- [
797
- 26,
798
- 5
799
- ],
800
- [
801
- 26,
802
- 5
803
- ],
804
- [
805
- 26,
806
- 6
807
- ],
808
- [
809
- 27,
810
- 3
811
- ],
812
- [
813
- 28,
814
- 3
815
- ],
816
- [
817
- 75,
818
- 1
819
- ],
820
- [
821
- 75,
822
- 3
823
- ],
824
- [
825
- 77,
826
- 1
827
- ],
828
- [
829
- 77,
830
- 2
831
- ],
832
- [
833
- 79,
834
- 1
835
- ],
836
- [
837
- 79,
838
- 1
839
- ],
840
- [
841
- 79,
842
- 1
843
- ],
844
- [
845
- 79,
846
- 1
847
- ],
848
- [
849
- 79,
850
- 1
851
- ],
852
- [
853
- 79,
854
- 1
855
- ],
856
- [
857
- 79,
858
- 1
859
- ],
860
- [
861
- 79,
862
- 1
863
- ],
864
- [
865
- 79,
866
- 1
867
- ],
868
- [
869
- 86,
870
- 1
871
- ],
872
- [
873
- 86,
874
- 1
875
- ],
876
- [
877
- 87,
878
- 1
879
- ],
880
- [
881
- 87,
882
- 1
883
- ],
884
- [
885
- 87,
886
- 1
887
- ],
888
- [
889
- 87,
890
- 1
891
- ],
892
- [
893
- 87,
894
- 1
895
- ],
896
- [
897
- 87,
898
- 1
899
- ],
900
- [
901
- 87,
902
- 1
903
- ],
904
- [
905
- 89,
906
- 1
907
- ],
908
- [
909
- 89,
910
- 1
911
- ],
912
- [
913
- 89,
914
- 1
915
- ],
916
- [
917
- 89,
918
- 1
919
- ],
920
- [
921
- 16,
922
- 1
923
- ],
924
- [
925
- 16,
926
- 1
927
- ],
928
- [
929
- 16,
930
- 1
931
- ],
932
- [
933
- 16,
934
- 1
935
- ],
936
- [
937
- 18,
938
- 1
939
- ],
940
- [
941
- 51,
942
- 1
943
- ]
944
- ],
945
- performAction: function performAction(u, a, h, n, f, t, U) {
946
- var s = t.length - 1;
947
- switch(f){
948
- case 8:
949
- this.$ = t[s - 1];
950
- break;
951
- case 9:
952
- case 11:
953
- case 12:
954
- this.$ = t[s];
955
- break;
956
- case 10:
957
- case 13:
958
- this.$ = t[s - 1] + t[s];
959
- break;
960
- case 14:
961
- case 15:
962
- this.$ = t[s - 1] + "~" + t[s] + "~";
963
- break;
964
- case 16:
965
- n.addRelation(t[s]);
966
- break;
967
- case 17:
968
- t[s - 1].title = n.cleanupLabel(t[s]), n.addRelation(t[s - 1]);
969
- break;
970
- case 27:
971
- this.$ = t[s].trim(), n.setAccTitle(this.$);
972
- break;
973
- case 28:
974
- case 29:
975
- this.$ = t[s].trim(), n.setAccDescription(this.$);
976
- break;
977
- case 30:
978
- n.addClassesToNamespace(t[s - 3], t[s - 1]);
979
- break;
980
- case 31:
981
- n.addClassesToNamespace(t[s - 4], t[s - 1]);
982
- break;
983
- case 32:
984
- this.$ = t[s], n.addNamespace(t[s]);
985
- break;
986
- case 33:
987
- this.$ = [
988
- t[s]
989
- ];
990
- break;
991
- case 34:
992
- this.$ = [
993
- t[s - 1]
994
- ];
995
- break;
996
- case 35:
997
- t[s].unshift(t[s - 2]), this.$ = t[s];
998
- break;
999
- case 37:
1000
- n.setCssClass(t[s - 2], t[s]);
1001
- break;
1002
- case 38:
1003
- n.addMembers(t[s - 3], t[s - 1]);
1004
- break;
1005
- case 39:
1006
- n.setCssClass(t[s - 5], t[s - 3]), n.addMembers(t[s - 5], t[s - 1]);
1007
- break;
1008
- case 40:
1009
- this.$ = t[s], n.addClass(t[s]);
1010
- break;
1011
- case 41:
1012
- this.$ = t[s - 1], n.addClass(t[s - 1]), n.setClassLabel(t[s - 1], t[s]);
1013
- break;
1014
- case 42:
1015
- n.addAnnotation(t[s], t[s - 2]);
1016
- break;
1017
- case 43:
1018
- this.$ = [
1019
- t[s]
1020
- ];
1021
- break;
1022
- case 44:
1023
- t[s].push(t[s - 1]), this.$ = t[s];
1024
- break;
1025
- case 45:
1026
- break;
1027
- case 46:
1028
- n.addMember(t[s - 1], n.cleanupLabel(t[s]));
1029
- break;
1030
- case 47:
1031
- break;
1032
- case 48:
1033
- break;
1034
- case 49:
1035
- this.$ = {
1036
- id1: t[s - 2],
1037
- id2: t[s],
1038
- relation: t[s - 1],
1039
- relationTitle1: "none",
1040
- relationTitle2: "none"
1041
- };
1042
- break;
1043
- case 50:
1044
- this.$ = {
1045
- id1: t[s - 3],
1046
- id2: t[s],
1047
- relation: t[s - 1],
1048
- relationTitle1: t[s - 2],
1049
- relationTitle2: "none"
1050
- };
1051
- break;
1052
- case 51:
1053
- this.$ = {
1054
- id1: t[s - 3],
1055
- id2: t[s],
1056
- relation: t[s - 2],
1057
- relationTitle1: "none",
1058
- relationTitle2: t[s - 1]
1059
- };
1060
- break;
1061
- case 52:
1062
- this.$ = {
1063
- id1: t[s - 4],
1064
- id2: t[s],
1065
- relation: t[s - 2],
1066
- relationTitle1: t[s - 3],
1067
- relationTitle2: t[s - 1]
1068
- };
1069
- break;
1070
- case 53:
1071
- n.addNote(t[s], t[s - 1]);
1072
- break;
1073
- case 54:
1074
- n.addNote(t[s]);
1075
- break;
1076
- case 55:
1077
- n.setDirection("TB");
1078
- break;
1079
- case 56:
1080
- n.setDirection("BT");
1081
- break;
1082
- case 57:
1083
- n.setDirection("RL");
1084
- break;
1085
- case 58:
1086
- n.setDirection("LR");
1087
- break;
1088
- case 59:
1089
- this.$ = {
1090
- type1: t[s - 2],
1091
- type2: t[s],
1092
- lineType: t[s - 1]
1093
- };
1094
- break;
1095
- case 60:
1096
- this.$ = {
1097
- type1: "none",
1098
- type2: t[s],
1099
- lineType: t[s - 1]
1100
- };
1101
- break;
1102
- case 61:
1103
- this.$ = {
1104
- type1: t[s - 1],
1105
- type2: "none",
1106
- lineType: t[s]
1107
- };
1108
- break;
1109
- case 62:
1110
- this.$ = {
1111
- type1: "none",
1112
- type2: "none",
1113
- lineType: t[s]
1114
- };
1115
- break;
1116
- case 63:
1117
- this.$ = n.relationType.AGGREGATION;
1118
- break;
1119
- case 64:
1120
- this.$ = n.relationType.EXTENSION;
1121
- break;
1122
- case 65:
1123
- this.$ = n.relationType.COMPOSITION;
1124
- break;
1125
- case 66:
1126
- this.$ = n.relationType.DEPENDENCY;
1127
- break;
1128
- case 67:
1129
- this.$ = n.relationType.LOLLIPOP;
1130
- break;
1131
- case 68:
1132
- this.$ = n.lineType.LINE;
1133
- break;
1134
- case 69:
1135
- this.$ = n.lineType.DOTTED_LINE;
1136
- break;
1137
- case 70:
1138
- case 76:
1139
- this.$ = t[s - 2], n.setClickEvent(t[s - 1], t[s]);
1140
- break;
1141
- case 71:
1142
- case 77:
1143
- this.$ = t[s - 3], n.setClickEvent(t[s - 2], t[s - 1]), n.setTooltip(t[s - 2], t[s]);
1144
- break;
1145
- case 72:
1146
- this.$ = t[s - 2], n.setLink(t[s - 1], t[s]);
1147
- break;
1148
- case 73:
1149
- this.$ = t[s - 3], n.setLink(t[s - 2], t[s - 1], t[s]);
1150
- break;
1151
- case 74:
1152
- this.$ = t[s - 3], n.setLink(t[s - 2], t[s - 1]), n.setTooltip(t[s - 2], t[s]);
1153
- break;
1154
- case 75:
1155
- this.$ = t[s - 4], n.setLink(t[s - 3], t[s - 2], t[s]), n.setTooltip(t[s - 3], t[s - 1]);
1156
- break;
1157
- case 78:
1158
- this.$ = t[s - 3], n.setClickEvent(t[s - 2], t[s - 1], t[s]);
1159
- break;
1160
- case 79:
1161
- this.$ = t[s - 4], n.setClickEvent(t[s - 3], t[s - 2], t[s - 1]), n.setTooltip(t[s - 3], t[s]);
1162
- break;
1163
- case 80:
1164
- this.$ = t[s - 3], n.setLink(t[s - 2], t[s]);
1165
- break;
1166
- case 81:
1167
- this.$ = t[s - 4], n.setLink(t[s - 3], t[s - 1], t[s]);
1168
- break;
1169
- case 82:
1170
- this.$ = t[s - 4], n.setLink(t[s - 3], t[s - 1]), n.setTooltip(t[s - 3], t[s]);
1171
- break;
1172
- case 83:
1173
- this.$ = t[s - 5], n.setLink(t[s - 4], t[s - 2], t[s]), n.setTooltip(t[s - 4], t[s - 1]);
1174
- break;
1175
- case 84:
1176
- this.$ = t[s - 2], n.setCssStyle(t[s - 1], t[s]);
1177
- break;
1178
- case 85:
1179
- n.setCssClass(t[s - 1], t[s]);
1180
- break;
1181
- case 86:
1182
- this.$ = [
1183
- t[s]
1184
- ];
1185
- break;
1186
- case 87:
1187
- t[s - 2].push(t[s]), this.$ = t[s - 2];
1188
- break;
1189
- case 89:
1190
- this.$ = t[s - 1] + t[s];
1191
- break;
1192
- }
1193
- },
1194
- table: [
1195
- {
1196
- 3: 1,
1197
- 4: 2,
1198
- 5: 3,
1199
- 6: 4,
1200
- 7: [
1201
- 1,
1202
- 6
1203
- ],
1204
- 10: 5,
1205
- 16: 37,
1206
- 17: 20,
1207
- 18: 38,
1208
- 20: 7,
1209
- 22: 8,
1210
- 23: 9,
1211
- 24: 10,
1212
- 25: 11,
1213
- 26: 12,
1214
- 27: 13,
1215
- 28: 14,
1216
- 29: 15,
1217
- 30: 16,
1218
- 31: i,
1219
- 33: r,
1220
- 35: l,
1221
- 36: 21,
1222
- 40: o,
1223
- 41: 22,
1224
- 44: A,
1225
- 45: g,
1226
- 47: D,
1227
- 48: B,
1228
- 50: _,
1229
- 52: fe,
1230
- 53: de,
1231
- 54: Ee,
1232
- 55: Ce,
1233
- 56: me,
1234
- 66: be,
1235
- 67: ge,
1236
- 69: ke,
1237
- 73: Te,
1238
- 74: d,
1239
- 76: Fe,
1240
- 80: E,
1241
- 95: C,
1242
- 97: m,
1243
- 98: k
1244
- },
1245
- {
1246
- 1: [
1247
- 3
1248
- ]
1249
- },
1250
- {
1251
- 1: [
1252
- 2,
1253
- 1
1254
- ]
1255
- },
1256
- {
1257
- 1: [
1258
- 2,
1259
- 2
1260
- ]
1261
- },
1262
- {
1263
- 1: [
1264
- 2,
1265
- 3
1266
- ]
1267
- },
1268
- e(ye, [
1269
- 2,
1270
- 5
1271
- ], {
1272
- 8: [
1273
- 1,
1274
- 46
1275
- ]
1276
- }),
1277
- {
1278
- 8: [
1279
- 1,
1280
- 47
1281
- ]
1282
- },
1283
- e(c, [
1284
- 2,
1285
- 16
1286
- ], {
1287
- 21: [
1288
- 1,
1289
- 48
1290
- ]
1291
- }),
1292
- e(c, [
1293
- 2,
1294
- 18
1295
- ]),
1296
- e(c, [
1297
- 2,
1298
- 19
1299
- ]),
1300
- e(c, [
1301
- 2,
1302
- 20
1303
- ]),
1304
- e(c, [
1305
- 2,
1306
- 21
1307
- ]),
1308
- e(c, [
1309
- 2,
1310
- 22
1311
- ]),
1312
- e(c, [
1313
- 2,
1314
- 23
1315
- ]),
1316
- e(c, [
1317
- 2,
1318
- 24
1319
- ]),
1320
- e(c, [
1321
- 2,
1322
- 25
1323
- ]),
1324
- e(c, [
1325
- 2,
1326
- 26
1327
- ]),
1328
- {
1329
- 32: [
1330
- 1,
1331
- 49
1332
- ]
1333
- },
1334
- {
1335
- 34: [
1336
- 1,
1337
- 50
1338
- ]
1339
- },
1340
- e(c, [
1341
- 2,
1342
- 29
1343
- ]),
1344
- e(c, [
1345
- 2,
1346
- 45
1347
- ], {
1348
- 49: 51,
1349
- 57: 54,
1350
- 58: 55,
1351
- 13: [
1352
- 1,
1353
- 52
1354
- ],
1355
- 21: [
1356
- 1,
1357
- 53
1358
- ],
1359
- 59: Y,
1360
- 60: j,
1361
- 61: Q,
1362
- 62: X,
1363
- 63: H,
1364
- 64: De,
1365
- 65: Be
1366
- }),
1367
- {
1368
- 37: [
1369
- 1,
1370
- 63
1371
- ]
1372
- },
1373
- e(W, [
1374
- 2,
1375
- 36
1376
- ], {
1377
- 37: [
1378
- 1,
1379
- 65
1380
- ],
1381
- 42: [
1382
- 1,
1383
- 64
1384
- ]
1385
- }),
1386
- e(c, [
1387
- 2,
1388
- 47
1389
- ]),
1390
- e(c, [
1391
- 2,
1392
- 48
1393
- ]),
1394
- {
1395
- 16: 66,
1396
- 74: d,
1397
- 80: E,
1398
- 95: C,
1399
- 97: m
1400
- },
1401
- {
1402
- 16: 37,
1403
- 17: 67,
1404
- 18: 38,
1405
- 74: d,
1406
- 80: E,
1407
- 95: C,
1408
- 97: m,
1409
- 98: k
1410
- },
1411
- {
1412
- 16: 37,
1413
- 17: 68,
1414
- 18: 38,
1415
- 74: d,
1416
- 80: E,
1417
- 95: C,
1418
- 97: m,
1419
- 98: k
1420
- },
1421
- {
1422
- 16: 37,
1423
- 17: 69,
1424
- 18: 38,
1425
- 74: d,
1426
- 80: E,
1427
- 95: C,
1428
- 97: m,
1429
- 98: k
1430
- },
1431
- {
1432
- 74: [
1433
- 1,
1434
- 70
1435
- ]
1436
- },
1437
- {
1438
- 13: [
1439
- 1,
1440
- 71
1441
- ]
1442
- },
1443
- {
1444
- 16: 37,
1445
- 17: 72,
1446
- 18: 38,
1447
- 74: d,
1448
- 80: E,
1449
- 95: C,
1450
- 97: m,
1451
- 98: k
1452
- },
1453
- {
1454
- 13: Ge,
1455
- 51: 73
1456
- },
1457
- e(c, [
1458
- 2,
1459
- 55
1460
- ]),
1461
- e(c, [
1462
- 2,
1463
- 56
1464
- ]),
1465
- e(c, [
1466
- 2,
1467
- 57
1468
- ]),
1469
- e(c, [
1470
- 2,
1471
- 58
1472
- ]),
1473
- e(M, [
1474
- 2,
1475
- 11
1476
- ], {
1477
- 16: 37,
1478
- 18: 38,
1479
- 17: 75,
1480
- 19: [
1481
- 1,
1482
- 76
1483
- ],
1484
- 74: d,
1485
- 80: E,
1486
- 95: C,
1487
- 97: m,
1488
- 98: k
1489
- }),
1490
- e(M, [
1491
- 2,
1492
- 12
1493
- ], {
1494
- 19: [
1495
- 1,
1496
- 77
1497
- ]
1498
- }),
1499
- {
1500
- 15: 78,
1501
- 16: 79,
1502
- 74: d,
1503
- 80: E,
1504
- 95: C,
1505
- 97: m
1506
- },
1507
- {
1508
- 16: 37,
1509
- 17: 80,
1510
- 18: 38,
1511
- 74: d,
1512
- 80: E,
1513
- 95: C,
1514
- 97: m,
1515
- 98: k
1516
- },
1517
- e(q, [
1518
- 2,
1519
- 112
1520
- ]),
1521
- e(q, [
1522
- 2,
1523
- 113
1524
- ]),
1525
- e(q, [
1526
- 2,
1527
- 114
1528
- ]),
1529
- e(q, [
1530
- 2,
1531
- 115
1532
- ]),
1533
- e([
1534
- 1,
1535
- 8,
1536
- 9,
1537
- 12,
1538
- 13,
1539
- 19,
1540
- 21,
1541
- 37,
1542
- 39,
1543
- 42,
1544
- 59,
1545
- 60,
1546
- 61,
1547
- 62,
1548
- 63,
1549
- 64,
1550
- 65,
1551
- 70,
1552
- 72
1553
- ], [
1554
- 2,
1555
- 116
1556
- ]),
1557
- e(ye, [
1558
- 2,
1559
- 6
1560
- ], {
1561
- 10: 5,
1562
- 20: 7,
1563
- 22: 8,
1564
- 23: 9,
1565
- 24: 10,
1566
- 25: 11,
1567
- 26: 12,
1568
- 27: 13,
1569
- 28: 14,
1570
- 29: 15,
1571
- 30: 16,
1572
- 17: 20,
1573
- 36: 21,
1574
- 41: 22,
1575
- 16: 37,
1576
- 18: 38,
1577
- 5: 81,
1578
- 31: i,
1579
- 33: r,
1580
- 35: l,
1581
- 40: o,
1582
- 44: A,
1583
- 45: g,
1584
- 47: D,
1585
- 48: B,
1586
- 50: _,
1587
- 52: fe,
1588
- 53: de,
1589
- 54: Ee,
1590
- 55: Ce,
1591
- 56: me,
1592
- 66: be,
1593
- 67: ge,
1594
- 69: ke,
1595
- 73: Te,
1596
- 74: d,
1597
- 76: Fe,
1598
- 80: E,
1599
- 95: C,
1600
- 97: m,
1601
- 98: k
1602
- }),
1603
- {
1604
- 5: 82,
1605
- 10: 5,
1606
- 16: 37,
1607
- 17: 20,
1608
- 18: 38,
1609
- 20: 7,
1610
- 22: 8,
1611
- 23: 9,
1612
- 24: 10,
1613
- 25: 11,
1614
- 26: 12,
1615
- 27: 13,
1616
- 28: 14,
1617
- 29: 15,
1618
- 30: 16,
1619
- 31: i,
1620
- 33: r,
1621
- 35: l,
1622
- 36: 21,
1623
- 40: o,
1624
- 41: 22,
1625
- 44: A,
1626
- 45: g,
1627
- 47: D,
1628
- 48: B,
1629
- 50: _,
1630
- 52: fe,
1631
- 53: de,
1632
- 54: Ee,
1633
- 55: Ce,
1634
- 56: me,
1635
- 66: be,
1636
- 67: ge,
1637
- 69: ke,
1638
- 73: Te,
1639
- 74: d,
1640
- 76: Fe,
1641
- 80: E,
1642
- 95: C,
1643
- 97: m,
1644
- 98: k
1645
- },
1646
- e(c, [
1647
- 2,
1648
- 17
1649
- ]),
1650
- e(c, [
1651
- 2,
1652
- 27
1653
- ]),
1654
- e(c, [
1655
- 2,
1656
- 28
1657
- ]),
1658
- {
1659
- 13: [
1660
- 1,
1661
- 84
1662
- ],
1663
- 16: 37,
1664
- 17: 83,
1665
- 18: 38,
1666
- 74: d,
1667
- 80: E,
1668
- 95: C,
1669
- 97: m,
1670
- 98: k
1671
- },
1672
- {
1673
- 49: 85,
1674
- 57: 54,
1675
- 58: 55,
1676
- 59: Y,
1677
- 60: j,
1678
- 61: Q,
1679
- 62: X,
1680
- 63: H,
1681
- 64: De,
1682
- 65: Be
1683
- },
1684
- e(c, [
1685
- 2,
1686
- 46
1687
- ]),
1688
- {
1689
- 58: 86,
1690
- 64: De,
1691
- 65: Be
1692
- },
1693
- e(J, [
1694
- 2,
1695
- 62
1696
- ], {
1697
- 57: 87,
1698
- 59: Y,
1699
- 60: j,
1700
- 61: Q,
1701
- 62: X,
1702
- 63: H
1703
- }),
1704
- e(G, [
1705
- 2,
1706
- 63
1707
- ]),
1708
- e(G, [
1709
- 2,
1710
- 64
1711
- ]),
1712
- e(G, [
1713
- 2,
1714
- 65
1715
- ]),
1716
- e(G, [
1717
- 2,
1718
- 66
1719
- ]),
1720
- e(G, [
1721
- 2,
1722
- 67
1723
- ]),
1724
- e(Ue, [
1725
- 2,
1726
- 68
1727
- ]),
1728
- e(Ue, [
1729
- 2,
1730
- 69
1731
- ]),
1732
- {
1733
- 8: [
1734
- 1,
1735
- 89
1736
- ],
1737
- 23: 90,
1738
- 38: 88,
1739
- 41: 22,
1740
- 44: A
1741
- },
1742
- {
1743
- 16: 91,
1744
- 74: d,
1745
- 80: E,
1746
- 95: C,
1747
- 97: m
1748
- },
1749
- {
1750
- 43: 92,
1751
- 47: _e
1752
- },
1753
- {
1754
- 46: [
1755
- 1,
1756
- 94
1757
- ]
1758
- },
1759
- {
1760
- 13: [
1761
- 1,
1762
- 95
1763
- ]
1764
- },
1765
- {
1766
- 13: [
1767
- 1,
1768
- 96
1769
- ]
1770
- },
1771
- {
1772
- 70: [
1773
- 1,
1774
- 97
1775
- ],
1776
- 72: [
1777
- 1,
1778
- 98
1779
- ]
1780
- },
1781
- {
1782
- 21: Z,
1783
- 73: $,
1784
- 74: ee,
1785
- 75: 99,
1786
- 77: 100,
1787
- 79: 101,
1788
- 80: te,
1789
- 81: se,
1790
- 82: ie,
1791
- 83: ne,
1792
- 84: ue,
1793
- 85: re
1794
- },
1795
- {
1796
- 74: [
1797
- 1,
1798
- 111
1799
- ]
1800
- },
1801
- {
1802
- 13: Ge,
1803
- 51: 112
1804
- },
1805
- e(c, [
1806
- 2,
1807
- 54
1808
- ]),
1809
- e(c, [
1810
- 2,
1811
- 117
1812
- ]),
1813
- e(M, [
1814
- 2,
1815
- 13
1816
- ]),
1817
- e(M, [
1818
- 2,
1819
- 14
1820
- ]),
1821
- e(M, [
1822
- 2,
1823
- 15
1824
- ]),
1825
- {
1826
- 37: [
1827
- 2,
1828
- 32
1829
- ]
1830
- },
1831
- {
1832
- 15: 113,
1833
- 16: 79,
1834
- 37: [
1835
- 2,
1836
- 9
1837
- ],
1838
- 74: d,
1839
- 80: E,
1840
- 95: C,
1841
- 97: m
1842
- },
1843
- e(Se, [
1844
- 2,
1845
- 40
1846
- ], {
1847
- 11: 114,
1848
- 12: [
1849
- 1,
1850
- 115
1851
- ]
1852
- }),
1853
- e(ye, [
1854
- 2,
1855
- 7
1856
- ]),
1857
- {
1858
- 9: [
1859
- 1,
1860
- 116
1861
- ]
1862
- },
1863
- e(ae, [
1864
- 2,
1865
- 49
1866
- ]),
1867
- {
1868
- 16: 37,
1869
- 17: 117,
1870
- 18: 38,
1871
- 74: d,
1872
- 80: E,
1873
- 95: C,
1874
- 97: m,
1875
- 98: k
1876
- },
1877
- {
1878
- 13: [
1879
- 1,
1880
- 119
1881
- ],
1882
- 16: 37,
1883
- 17: 118,
1884
- 18: 38,
1885
- 74: d,
1886
- 80: E,
1887
- 95: C,
1888
- 97: m,
1889
- 98: k
1890
- },
1891
- e(J, [
1892
- 2,
1893
- 61
1894
- ], {
1895
- 57: 120,
1896
- 59: Y,
1897
- 60: j,
1898
- 61: Q,
1899
- 62: X,
1900
- 63: H
1901
- }),
1902
- e(J, [
1903
- 2,
1904
- 60
1905
- ]),
1906
- {
1907
- 39: [
1908
- 1,
1909
- 121
1910
- ]
1911
- },
1912
- {
1913
- 23: 90,
1914
- 38: 122,
1915
- 41: 22,
1916
- 44: A
1917
- },
1918
- {
1919
- 8: [
1920
- 1,
1921
- 123
1922
- ],
1923
- 39: [
1924
- 2,
1925
- 33
1926
- ]
1927
- },
1928
- e(W, [
1929
- 2,
1930
- 37
1931
- ], {
1932
- 37: [
1933
- 1,
1934
- 124
1935
- ]
1936
- }),
1937
- {
1938
- 39: [
1939
- 1,
1940
- 125
1941
- ]
1942
- },
1943
- {
1944
- 39: [
1945
- 2,
1946
- 43
1947
- ],
1948
- 43: 126,
1949
- 47: _e
1950
- },
1951
- {
1952
- 16: 37,
1953
- 17: 127,
1954
- 18: 38,
1955
- 74: d,
1956
- 80: E,
1957
- 95: C,
1958
- 97: m,
1959
- 98: k
1960
- },
1961
- e(c, [
1962
- 2,
1963
- 70
1964
- ], {
1965
- 13: [
1966
- 1,
1967
- 128
1968
- ]
1969
- }),
1970
- e(c, [
1971
- 2,
1972
- 72
1973
- ], {
1974
- 13: [
1975
- 1,
1976
- 130
1977
- ],
1978
- 68: [
1979
- 1,
1980
- 129
1981
- ]
1982
- }),
1983
- e(c, [
1984
- 2,
1985
- 76
1986
- ], {
1987
- 13: [
1988
- 1,
1989
- 131
1990
- ],
1991
- 71: [
1992
- 1,
1993
- 132
1994
- ]
1995
- }),
1996
- {
1997
- 13: [
1998
- 1,
1999
- 133
2000
- ]
2001
- },
2002
- e(c, [
2003
- 2,
2004
- 84
2005
- ], {
2006
- 78: [
2007
- 1,
2008
- 134
2009
- ]
2010
- }),
2011
- e(ze, [
2012
- 2,
2013
- 86
2014
- ], {
2015
- 79: 135,
2016
- 21: Z,
2017
- 73: $,
2018
- 74: ee,
2019
- 80: te,
2020
- 81: se,
2021
- 82: ie,
2022
- 83: ne,
2023
- 84: ue,
2024
- 85: re
2025
- }),
2026
- e(S, [
2027
- 2,
2028
- 88
2029
- ]),
2030
- e(S, [
2031
- 2,
2032
- 90
2033
- ]),
2034
- e(S, [
2035
- 2,
2036
- 91
2037
- ]),
2038
- e(S, [
2039
- 2,
2040
- 92
2041
- ]),
2042
- e(S, [
2043
- 2,
2044
- 93
2045
- ]),
2046
- e(S, [
2047
- 2,
2048
- 94
2049
- ]),
2050
- e(S, [
2051
- 2,
2052
- 95
2053
- ]),
2054
- e(S, [
2055
- 2,
2056
- 96
2057
- ]),
2058
- e(S, [
2059
- 2,
2060
- 97
2061
- ]),
2062
- e(S, [
2063
- 2,
2064
- 98
2065
- ]),
2066
- e(c, [
2067
- 2,
2068
- 85
2069
- ]),
2070
- e(c, [
2071
- 2,
2072
- 53
2073
- ]),
2074
- {
2075
- 37: [
2076
- 2,
2077
- 10
2078
- ]
2079
- },
2080
- e(Se, [
2081
- 2,
2082
- 41
2083
- ]),
2084
- {
2085
- 13: [
2086
- 1,
2087
- 136
2088
- ]
2089
- },
2090
- {
2091
- 1: [
2092
- 2,
2093
- 4
2094
- ]
2095
- },
2096
- e(ae, [
2097
- 2,
2098
- 51
2099
- ]),
2100
- e(ae, [
2101
- 2,
2102
- 50
2103
- ]),
2104
- {
2105
- 16: 37,
2106
- 17: 137,
2107
- 18: 38,
2108
- 74: d,
2109
- 80: E,
2110
- 95: C,
2111
- 97: m,
2112
- 98: k
2113
- },
2114
- e(J, [
2115
- 2,
2116
- 59
2117
- ]),
2118
- e(c, [
2119
- 2,
2120
- 30
2121
- ]),
2122
- {
2123
- 39: [
2124
- 1,
2125
- 138
2126
- ]
2127
- },
2128
- {
2129
- 23: 90,
2130
- 38: 139,
2131
- 39: [
2132
- 2,
2133
- 34
2134
- ],
2135
- 41: 22,
2136
- 44: A
2137
- },
2138
- {
2139
- 43: 140,
2140
- 47: _e
2141
- },
2142
- e(W, [
2143
- 2,
2144
- 38
2145
- ]),
2146
- {
2147
- 39: [
2148
- 2,
2149
- 44
2150
- ]
2151
- },
2152
- e(c, [
2153
- 2,
2154
- 42
2155
- ]),
2156
- e(c, [
2157
- 2,
2158
- 71
2159
- ]),
2160
- e(c, [
2161
- 2,
2162
- 73
2163
- ]),
2164
- e(c, [
2165
- 2,
2166
- 74
2167
- ], {
2168
- 68: [
2169
- 1,
2170
- 141
2171
- ]
2172
- }),
2173
- e(c, [
2174
- 2,
2175
- 77
2176
- ]),
2177
- e(c, [
2178
- 2,
2179
- 78
2180
- ], {
2181
- 13: [
2182
- 1,
2183
- 142
2184
- ]
2185
- }),
2186
- e(c, [
2187
- 2,
2188
- 80
2189
- ], {
2190
- 13: [
2191
- 1,
2192
- 144
2193
- ],
2194
- 68: [
2195
- 1,
2196
- 143
2197
- ]
2198
- }),
2199
- {
2200
- 21: Z,
2201
- 73: $,
2202
- 74: ee,
2203
- 77: 145,
2204
- 79: 101,
2205
- 80: te,
2206
- 81: se,
2207
- 82: ie,
2208
- 83: ne,
2209
- 84: ue,
2210
- 85: re
2211
- },
2212
- e(S, [
2213
- 2,
2214
- 89
2215
- ]),
2216
- {
2217
- 14: [
2218
- 1,
2219
- 146
2220
- ]
2221
- },
2222
- e(ae, [
2223
- 2,
2224
- 52
2225
- ]),
2226
- e(c, [
2227
- 2,
2228
- 31
2229
- ]),
2230
- {
2231
- 39: [
2232
- 2,
2233
- 35
2234
- ]
2235
- },
2236
- {
2237
- 39: [
2238
- 1,
2239
- 147
2240
- ]
2241
- },
2242
- e(c, [
2243
- 2,
2244
- 75
2245
- ]),
2246
- e(c, [
2247
- 2,
2248
- 79
2249
- ]),
2250
- e(c, [
2251
- 2,
2252
- 81
2253
- ]),
2254
- e(c, [
2255
- 2,
2256
- 82
2257
- ], {
2258
- 68: [
2259
- 1,
2260
- 148
2261
- ]
2262
- }),
2263
- e(ze, [
2264
- 2,
2265
- 87
2266
- ], {
2267
- 79: 135,
2268
- 21: Z,
2269
- 73: $,
2270
- 74: ee,
2271
- 80: te,
2272
- 81: se,
2273
- 82: ie,
2274
- 83: ne,
2275
- 84: ue,
2276
- 85: re
2277
- }),
2278
- e(Se, [
2279
- 2,
2280
- 8
2281
- ]),
2282
- e(W, [
2283
- 2,
2284
- 39
2285
- ]),
2286
- e(c, [
2287
- 2,
2288
- 83
2289
- ])
2290
- ],
2291
- defaultActions: {
2292
- 2: [
2293
- 2,
2294
- 1
2295
- ],
2296
- 3: [
2297
- 2,
2298
- 2
2299
- ],
2300
- 4: [
2301
- 2,
2302
- 3
2303
- ],
2304
- 78: [
2305
- 2,
2306
- 32
2307
- ],
2308
- 113: [
2309
- 2,
2310
- 10
2311
- ],
2312
- 116: [
2313
- 2,
2314
- 4
2315
- ],
2316
- 126: [
2317
- 2,
2318
- 44
2319
- ],
2320
- 139: [
2321
- 2,
2322
- 35
2323
- ]
2324
- },
2325
- parseError: function parseError(u, a) {
2326
- if (a.recoverable) this.trace(u);
2327
- else {
2328
- var h = new Error(u);
2329
- throw h.hash = a, h;
2330
- }
2331
- },
2332
- parse: function parse(u) {
2333
- var a = this, h = [
2334
- 0
2335
- ], n = [], f = [
2336
- null
2337
- ], t = [], U = this.table, s = "", le = 0, Ke = 0, tt = 2, Ye = 1, st = t.slice.call(arguments, 1), b = Object.create(this.lexer), I = {
2338
- yy: {}
2339
- };
2340
- for(var ve in this.yy)Object.prototype.hasOwnProperty.call(this.yy, ve) && (I.yy[ve] = this.yy[ve]);
2341
- b.setInput(u, I.yy), I.yy.lexer = b, I.yy.parser = this, _type_of(b.yylloc) > "u" && (b.yylloc = {});
2342
- var xe = b.yylloc;
2343
- t.push(xe);
2344
- var it = b.options && b.options.ranges;
2345
- typeof I.yy.parseError == "function" ? this.parseError = I.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
2346
- function nt() {
2347
- var L;
2348
- return L = n.pop() || b.lex() || Ye, typeof L != "number" && (_instanceof(L, Array) && (n = L, L = n.pop()), L = a.symbols_[L] || L), L;
2349
- }
2350
- for(var T, R, y, Oe, P = {}, ce, N, je, oe;;){
2351
- if (R = h[h.length - 1], this.defaultActions[R] ? y = this.defaultActions[R] : ((T === null || (typeof T === "undefined" ? "undefined" : _type_of(T)) > "u") && (T = nt()), y = U[R] && U[R][T]), (typeof y === "undefined" ? "undefined" : _type_of(y)) > "u" || !y.length || !y[0]) {
2352
- var Ie = "";
2353
- oe = [];
2354
- for(ce in U[R])this.terminals_[ce] && ce > tt && oe.push("'" + this.terminals_[ce] + "'");
2355
- b.showPosition ? Ie = "Parse error on line " + (le + 1) + ":\n" + b.showPosition() + "\nExpecting " + oe.join(", ") + ", got '" + (this.terminals_[T] || T) + "'" : Ie = "Parse error on line " + (le + 1) + ": Unexpected " + (T == Ye ? "end of input" : "'" + (this.terminals_[T] || T) + "'"), this.parseError(Ie, {
2356
- text: b.match,
2357
- token: this.terminals_[T] || T,
2358
- line: b.yylineno,
2359
- loc: xe,
2360
- expected: oe
2361
- });
2362
- }
2363
- if (_instanceof(y[0], Array) && y.length > 1) throw new Error("Parse Error: multiple actions possible at state: " + R + ", token: " + T);
2364
- switch(y[0]){
2365
- case 1:
2366
- h.push(T), f.push(b.yytext), t.push(b.yylloc), h.push(y[1]), T = null, Ke = b.yyleng, s = b.yytext, le = b.yylineno, xe = b.yylloc;
2367
- break;
2368
- case 2:
2369
- if (N = this.productions_[y[1]][1], P.$ = f[f.length - N], P._$ = {
2370
- first_line: t[t.length - (N || 1)].first_line,
2371
- last_line: t[t.length - 1].last_line,
2372
- first_column: t[t.length - (N || 1)].first_column,
2373
- last_column: t[t.length - 1].last_column
2374
- }, it && (P._$.range = [
2375
- t[t.length - (N || 1)].range[0],
2376
- t[t.length - 1].range[1]
2377
- ]), Oe = this.performAction.apply(P, [
2378
- s,
2379
- Ke,
2380
- le,
2381
- I.yy,
2382
- y[1],
2383
- f,
2384
- t
2385
- ].concat(st)), (typeof Oe === "undefined" ? "undefined" : _type_of(Oe)) < "u") return Oe;
2386
- N && (h = h.slice(0, -1 * N * 2), f = f.slice(0, -1 * N), t = t.slice(0, -1 * N)), h.push(this.productions_[y[1]][0]), f.push(P.$), t.push(P._$), je = U[h[h.length - 2]][h[h.length - 1]], h.push(je);
2387
- break;
2388
- case 3:
2389
- return true;
2390
- }
2391
- }
2392
- return true;
2393
- }
2394
- }, et = function() {
2395
- var x = {
2396
- EOF: 1,
2397
- parseError: function parseError(a, h) {
2398
- if (this.yy.parser) this.yy.parser.parseError(a, h);
2399
- else throw new Error(a);
2400
- },
2401
- // resets the lexer, sets new input
2402
- setInput: function setInput(u, a) {
2403
- return this.yy = a || this.yy || {}, this._input = u, this._more = this._backtrack = this.done = false, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = [
2404
- "INITIAL"
2405
- ], this.yylloc = {
2406
- first_line: 1,
2407
- first_column: 0,
2408
- last_line: 1,
2409
- last_column: 0
2410
- }, this.options.ranges && (this.yylloc.range = [
2411
- 0,
2412
- 0
2413
- ]), this.offset = 0, this;
2414
- },
2415
- // consumes and returns one char from the input
2416
- input: function input() {
2417
- var u = this._input[0];
2418
- this.yytext += u, this.yyleng++, this.offset++, this.match += u, this.matched += u;
2419
- var a = u.match(/(?:\r\n?|\n).*/g);
2420
- return a ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), u;
2421
- },
2422
- // unshifts one char (or a string) into the input
2423
- unput: function unput(u) {
2424
- var a = u.length, h = u.split(/(?:\r\n?|\n)/g);
2425
- this._input = u + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - a), this.offset -= a;
2426
- var n = this.match.split(/(?:\r\n?|\n)/g);
2427
- this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), h.length - 1 && (this.yylineno -= h.length - 1);
2428
- var f = this.yylloc.range;
2429
- return this.yylloc = {
2430
- first_line: this.yylloc.first_line,
2431
- last_line: this.yylineno + 1,
2432
- first_column: this.yylloc.first_column,
2433
- last_column: h ? (h.length === n.length ? this.yylloc.first_column : 0) + n[n.length - h.length].length - h[0].length : this.yylloc.first_column - a
2434
- }, this.options.ranges && (this.yylloc.range = [
2435
- f[0],
2436
- f[0] + this.yyleng - a
2437
- ]), this.yyleng = this.yytext.length, this;
2438
- },
2439
- // When called from action, caches matched text and appends it on next action
2440
- more: function more() {
2441
- return this._more = true, this;
2442
- },
2443
- // When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead.
2444
- reject: function reject() {
2445
- if (this.options.backtrack_lexer) this._backtrack = true;
2446
- else return this.parseError("Lexical error on line " + (this.yylineno + 1) + ". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n" + this.showPosition(), {
2447
- text: "",
2448
- token: null,
2449
- line: this.yylineno
2450
- });
2451
- return this;
2452
- },
2453
- // retain first n characters of the match
2454
- less: function less(u) {
2455
- this.unput(this.match.slice(u));
2456
- },
2457
- // displays already matched input, i.e. for error messages
2458
- pastInput: function pastInput() {
2459
- var u = this.matched.substr(0, this.matched.length - this.match.length);
2460
- return (u.length > 20 ? "..." : "") + u.substr(-20).replace(/\n/g, "");
2461
- },
2462
- // displays upcoming input, i.e. for error messages
2463
- upcomingInput: function upcomingInput() {
2464
- var u = this.match;
2465
- return u.length < 20 && (u += this._input.substr(0, 20 - u.length)), (u.substr(0, 20) + (u.length > 20 ? "..." : "")).replace(/\n/g, "");
2466
- },
2467
- // displays the character position where the lexing error occurred, i.e. for error messages
2468
- showPosition: function showPosition() {
2469
- var u = this.pastInput(), a = new Array(u.length + 1).join("-");
2470
- return u + this.upcomingInput() + "\n" + a + "^";
2471
- },
2472
- // test the lexed token: return FALSE when not a match, otherwise return token
2473
- test_match: function test_match(u, a) {
2474
- var h, n, f;
2475
- if (this.options.backtrack_lexer && (f = {
2476
- yylineno: this.yylineno,
2477
- yylloc: {
2478
- first_line: this.yylloc.first_line,
2479
- last_line: this.last_line,
2480
- first_column: this.yylloc.first_column,
2481
- last_column: this.yylloc.last_column
2482
- },
2483
- yytext: this.yytext,
2484
- match: this.match,
2485
- matches: this.matches,
2486
- matched: this.matched,
2487
- yyleng: this.yyleng,
2488
- offset: this.offset,
2489
- _more: this._more,
2490
- _input: this._input,
2491
- yy: this.yy,
2492
- conditionStack: this.conditionStack.slice(0),
2493
- done: this.done
2494
- }, this.options.ranges && (f.yylloc.range = this.yylloc.range.slice(0))), n = u[0].match(/(?:\r\n?|\n).*/g), n && (this.yylineno += n.length), this.yylloc = {
2495
- first_line: this.yylloc.last_line,
2496
- last_line: this.yylineno + 1,
2497
- first_column: this.yylloc.last_column,
2498
- last_column: n ? n[n.length - 1].length - n[n.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + u[0].length
2499
- }, this.yytext += u[0], this.match += u[0], this.matches = u, this.yyleng = this.yytext.length, this.options.ranges && (this.yylloc.range = [
2500
- this.offset,
2501
- this.offset += this.yyleng
2502
- ]), this._more = false, this._backtrack = false, this._input = this._input.slice(u[0].length), this.matched += u[0], h = this.performAction.call(this, this.yy, this, a, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = false), h) return h;
2503
- if (this._backtrack) {
2504
- for(var t in f)this[t] = f[t];
2505
- return false;
2506
- }
2507
- return false;
2508
- },
2509
- // return next match in input
2510
- next: function next() {
2511
- if (this.done) return this.EOF;
2512
- this._input || (this.done = true);
2513
- var u, a, h, n;
2514
- this._more || (this.yytext = "", this.match = "");
2515
- for(var f = this._currentRules(), t = 0; t < f.length; t++)if (h = this._input.match(this.rules[f[t]]), h && (!a || h[0].length > a[0].length)) {
2516
- if (a = h, n = t, this.options.backtrack_lexer) {
2517
- if (u = this.test_match(h, f[t]), u !== false) return u;
2518
- if (this._backtrack) {
2519
- a = false;
2520
- continue;
2521
- } else return false;
2522
- } else if (!this.options.flex) break;
2523
- }
2524
- return a ? (u = this.test_match(a, f[n]), u !== false ? u : false) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + ". Unrecognized text.\n" + this.showPosition(), {
2525
- text: "",
2526
- token: null,
2527
- line: this.yylineno
2528
- });
2529
- },
2530
- // return next match that has a token
2531
- lex: function lex() {
2532
- var a = this.next();
2533
- return a || this.lex();
2534
- },
2535
- // activates a new lexer condition state (pushes the new lexer condition state onto the condition stack)
2536
- begin: function begin(a) {
2537
- this.conditionStack.push(a);
2538
- },
2539
- // pop the previously active lexer condition state off the condition stack
2540
- popState: function popState() {
2541
- var a = this.conditionStack.length - 1;
2542
- return a > 0 ? this.conditionStack.pop() : this.conditionStack[0];
2543
- },
2544
- // produce the lexer rule set which is active for the currently active lexer condition state
2545
- _currentRules: function _currentRules() {
2546
- return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
2547
- },
2548
- // return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available
2549
- topState: function topState(a) {
2550
- return a = this.conditionStack.length - 1 - Math.abs(a || 0), a >= 0 ? this.conditionStack[a] : "INITIAL";
2551
- },
2552
- // alias for begin(condition)
2553
- pushState: function pushState(a) {
2554
- this.begin(a);
2555
- },
2556
- // return the number of states currently on the stack
2557
- stateStackSize: function stateStackSize() {
2558
- return this.conditionStack.length;
2559
- },
2560
- options: {},
2561
- performAction: function performAction(a, h, n, f) {
2562
- switch(n){
2563
- case 0:
2564
- return 53;
2565
- case 1:
2566
- return 54;
2567
- case 2:
2568
- return 55;
2569
- case 3:
2570
- return 56;
2571
- case 4:
2572
- break;
2573
- case 5:
2574
- break;
2575
- case 6:
2576
- return this.begin("acc_title"), 31;
2577
- case 7:
2578
- return this.popState(), "acc_title_value";
2579
- case 8:
2580
- return this.begin("acc_descr"), 33;
2581
- case 9:
2582
- return this.popState(), "acc_descr_value";
2583
- case 10:
2584
- this.begin("acc_descr_multiline");
2585
- break;
2586
- case 11:
2587
- this.popState();
2588
- break;
2589
- case 12:
2590
- return "acc_descr_multiline_value";
2591
- case 13:
2592
- return 8;
2593
- case 14:
2594
- break;
2595
- case 15:
2596
- return 7;
2597
- case 16:
2598
- return 7;
2599
- case 17:
2600
- return "EDGE_STATE";
2601
- case 18:
2602
- this.begin("callback_name");
2603
- break;
2604
- case 19:
2605
- this.popState();
2606
- break;
2607
- case 20:
2608
- this.popState(), this.begin("callback_args");
2609
- break;
2610
- case 21:
2611
- return 70;
2612
- case 22:
2613
- this.popState();
2614
- break;
2615
- case 23:
2616
- return 71;
2617
- case 24:
2618
- this.popState();
2619
- break;
2620
- case 25:
2621
- return "STR";
2622
- case 26:
2623
- this.begin("string");
2624
- break;
2625
- case 27:
2626
- return 73;
2627
- case 28:
2628
- return this.begin("namespace"), 40;
2629
- case 29:
2630
- return this.popState(), 8;
2631
- case 30:
2632
- break;
2633
- case 31:
2634
- return this.begin("namespace-body"), 37;
2635
- case 32:
2636
- return this.popState(), 39;
2637
- case 33:
2638
- return "EOF_IN_STRUCT";
2639
- case 34:
2640
- return 8;
2641
- case 35:
2642
- break;
2643
- case 36:
2644
- return "EDGE_STATE";
2645
- case 37:
2646
- return this.begin("class"), 44;
2647
- case 38:
2648
- return this.popState(), 8;
2649
- case 39:
2650
- break;
2651
- case 40:
2652
- return this.popState(), this.popState(), 39;
2653
- case 41:
2654
- return this.begin("class-body"), 37;
2655
- case 42:
2656
- return this.popState(), 39;
2657
- case 43:
2658
- return "EOF_IN_STRUCT";
2659
- case 44:
2660
- return "EDGE_STATE";
2661
- case 45:
2662
- return "OPEN_IN_STRUCT";
2663
- case 46:
2664
- break;
2665
- case 47:
2666
- return "MEMBER";
2667
- case 48:
2668
- return 76;
2669
- case 49:
2670
- return 66;
2671
- case 50:
2672
- return 67;
2673
- case 51:
2674
- return 69;
2675
- case 52:
2676
- return 50;
2677
- case 53:
2678
- return 52;
2679
- case 54:
2680
- return 45;
2681
- case 55:
2682
- return 46;
2683
- case 56:
2684
- return 72;
2685
- case 57:
2686
- this.popState();
2687
- break;
2688
- case 58:
2689
- return "GENERICTYPE";
2690
- case 59:
2691
- this.begin("generic");
2692
- break;
2693
- case 60:
2694
- this.popState();
2695
- break;
2696
- case 61:
2697
- return "BQUOTE_STR";
2698
- case 62:
2699
- this.begin("bqstring");
2700
- break;
2701
- case 63:
2702
- return 68;
2703
- case 64:
2704
- return 68;
2705
- case 65:
2706
- return 68;
2707
- case 66:
2708
- return 68;
2709
- case 67:
2710
- return 60;
2711
- case 68:
2712
- return 60;
2713
- case 69:
2714
- return 62;
2715
- case 70:
2716
- return 62;
2717
- case 71:
2718
- return 61;
2719
- case 72:
2720
- return 59;
2721
- case 73:
2722
- return 63;
2723
- case 74:
2724
- return 64;
2725
- case 75:
2726
- return 65;
2727
- case 76:
2728
- return 21;
2729
- case 77:
2730
- return 42;
2731
- case 78:
2732
- return 95;
2733
- case 79:
2734
- return "DOT";
2735
- case 80:
2736
- return "PLUS";
2737
- case 81:
2738
- return 81;
2739
- case 82:
2740
- return 78;
2741
- case 83:
2742
- return 84;
2743
- case 84:
2744
- return 84;
2745
- case 85:
2746
- return 85;
2747
- case 86:
2748
- return "EQUALS";
2749
- case 87:
2750
- return "EQUALS";
2751
- case 88:
2752
- return 74;
2753
- case 89:
2754
- return 12;
2755
- case 90:
2756
- return 14;
2757
- case 91:
2758
- return "PUNCTUATION";
2759
- case 92:
2760
- return 80;
2761
- case 93:
2762
- return 97;
2763
- case 94:
2764
- return 83;
2765
- case 95:
2766
- return 83;
2767
- case 96:
2768
- return 9;
2769
- }
2770
- },
2771
- rules: [
2772
- /^(?:.*direction\s+TB[^\n]*)/,
2773
- /^(?:.*direction\s+BT[^\n]*)/,
2774
- /^(?:.*direction\s+RL[^\n]*)/,
2775
- /^(?:.*direction\s+LR[^\n]*)/,
2776
- /^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,
2777
- /^(?:%%[^\n]*(\r?\n)*)/,
2778
- /^(?:accTitle\s*:\s*)/,
2779
- /^(?:(?!\n||)*[^\n]*)/,
2780
- /^(?:accDescr\s*:\s*)/,
2781
- /^(?:(?!\n||)*[^\n]*)/,
2782
- /^(?:accDescr\s*\{\s*)/,
2783
- /^(?:[\}])/,
2784
- /^(?:[^\}]*)/,
2785
- /^(?:\s*(\r?\n)+)/,
2786
- /^(?:\s+)/,
2787
- /^(?:classDiagram-v2\b)/,
2788
- /^(?:classDiagram\b)/,
2789
- /^(?:\[\*\])/,
2790
- /^(?:call[\s]+)/,
2791
- /^(?:\([\s]*\))/,
2792
- /^(?:\()/,
2793
- /^(?:[^(]*)/,
2794
- /^(?:\))/,
2795
- /^(?:[^)]*)/,
2796
- /^(?:["])/,
2797
- /^(?:[^"]*)/,
2798
- /^(?:["])/,
2799
- /^(?:style\b)/,
2800
- /^(?:namespace\b)/,
2801
- /^(?:\s*(\r?\n)+)/,
2802
- /^(?:\s+)/,
2803
- /^(?:[{])/,
2804
- /^(?:[}])/,
2805
- /^(?:$)/,
2806
- /^(?:\s*(\r?\n)+)/,
2807
- /^(?:\s+)/,
2808
- /^(?:\[\*\])/,
2809
- /^(?:class\b)/,
2810
- /^(?:\s*(\r?\n)+)/,
2811
- /^(?:\s+)/,
2812
- /^(?:[}])/,
2813
- /^(?:[{])/,
2814
- /^(?:[}])/,
2815
- /^(?:$)/,
2816
- /^(?:\[\*\])/,
2817
- /^(?:[{])/,
2818
- /^(?:[\n])/,
2819
- /^(?:[^{}\n]*)/,
2820
- /^(?:cssClass\b)/,
2821
- /^(?:callback\b)/,
2822
- /^(?:link\b)/,
2823
- /^(?:click\b)/,
2824
- /^(?:note for\b)/,
2825
- /^(?:note\b)/,
2826
- /^(?:<<)/,
2827
- /^(?:>>)/,
2828
- /^(?:href\b)/,
2829
- /^(?:[~])/,
2830
- /^(?:[^~]*)/,
2831
- /^(?:~)/,
2832
- /^(?:[`])/,
2833
- /^(?:[^`]+)/,
2834
- /^(?:[`])/,
2835
- /^(?:_self\b)/,
2836
- /^(?:_blank\b)/,
2837
- /^(?:_parent\b)/,
2838
- /^(?:_top\b)/,
2839
- /^(?:\s*<\|)/,
2840
- /^(?:\s*\|>)/,
2841
- /^(?:\s*>)/,
2842
- /^(?:\s*<)/,
2843
- /^(?:\s*\*)/,
2844
- /^(?:\s*o\b)/,
2845
- /^(?:\s*\(\))/,
2846
- /^(?:--)/,
2847
- /^(?:\.\.)/,
2848
- /^(?::{1}[^:\n;]+)/,
2849
- /^(?::{3})/,
2850
- /^(?:-)/,
2851
- /^(?:\.)/,
2852
- /^(?:\+)/,
2853
- /^(?::)/,
2854
- /^(?:,)/,
2855
- /^(?:#)/,
2856
- /^(?:#)/,
2857
- /^(?:%)/,
2858
- /^(?:=)/,
2859
- /^(?:=)/,
2860
- /^(?:\w+)/,
2861
- /^(?:\[)/,
2862
- /^(?:\])/,
2863
- /^(?:[!"#$%&'*+,-.`?\\/])/,
2864
- /^(?:[0-9]+)/,
2865
- /^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,
2866
- /^(?:\s)/,
2867
- /^(?:\s)/,
2868
- /^(?:$)/
2869
- ],
2870
- conditions: {
2871
- "namespace-body": {
2872
- rules: [
2873
- 26,
2874
- 32,
2875
- 33,
2876
- 34,
2877
- 35,
2878
- 36,
2879
- 37,
2880
- 48,
2881
- 49,
2882
- 50,
2883
- 51,
2884
- 52,
2885
- 53,
2886
- 54,
2887
- 55,
2888
- 56,
2889
- 59,
2890
- 62,
2891
- 63,
2892
- 64,
2893
- 65,
2894
- 66,
2895
- 67,
2896
- 68,
2897
- 69,
2898
- 70,
2899
- 71,
2900
- 72,
2901
- 73,
2902
- 74,
2903
- 75,
2904
- 76,
2905
- 77,
2906
- 78,
2907
- 79,
2908
- 80,
2909
- 85,
2910
- 86,
2911
- 87,
2912
- 88,
2913
- 89,
2914
- 90,
2915
- 91,
2916
- 92,
2917
- 93,
2918
- 94,
2919
- 96
2920
- ],
2921
- inclusive: false
2922
- },
2923
- namespace: {
2924
- rules: [
2925
- 26,
2926
- 28,
2927
- 29,
2928
- 30,
2929
- 31,
2930
- 48,
2931
- 49,
2932
- 50,
2933
- 51,
2934
- 52,
2935
- 53,
2936
- 54,
2937
- 55,
2938
- 56,
2939
- 59,
2940
- 62,
2941
- 63,
2942
- 64,
2943
- 65,
2944
- 66,
2945
- 67,
2946
- 68,
2947
- 69,
2948
- 70,
2949
- 71,
2950
- 72,
2951
- 73,
2952
- 74,
2953
- 75,
2954
- 76,
2955
- 77,
2956
- 78,
2957
- 79,
2958
- 80,
2959
- 85,
2960
- 86,
2961
- 87,
2962
- 88,
2963
- 89,
2964
- 90,
2965
- 91,
2966
- 92,
2967
- 93,
2968
- 94,
2969
- 96
2970
- ],
2971
- inclusive: false
2972
- },
2973
- "class-body": {
2974
- rules: [
2975
- 26,
2976
- 42,
2977
- 43,
2978
- 44,
2979
- 45,
2980
- 46,
2981
- 47,
2982
- 48,
2983
- 49,
2984
- 50,
2985
- 51,
2986
- 52,
2987
- 53,
2988
- 54,
2989
- 55,
2990
- 56,
2991
- 59,
2992
- 62,
2993
- 63,
2994
- 64,
2995
- 65,
2996
- 66,
2997
- 67,
2998
- 68,
2999
- 69,
3000
- 70,
3001
- 71,
3002
- 72,
3003
- 73,
3004
- 74,
3005
- 75,
3006
- 76,
3007
- 77,
3008
- 78,
3009
- 79,
3010
- 80,
3011
- 85,
3012
- 86,
3013
- 87,
3014
- 88,
3015
- 89,
3016
- 90,
3017
- 91,
3018
- 92,
3019
- 93,
3020
- 94,
3021
- 96
3022
- ],
3023
- inclusive: false
3024
- },
3025
- class: {
3026
- rules: [
3027
- 26,
3028
- 38,
3029
- 39,
3030
- 40,
3031
- 41,
3032
- 48,
3033
- 49,
3034
- 50,
3035
- 51,
3036
- 52,
3037
- 53,
3038
- 54,
3039
- 55,
3040
- 56,
3041
- 59,
3042
- 62,
3043
- 63,
3044
- 64,
3045
- 65,
3046
- 66,
3047
- 67,
3048
- 68,
3049
- 69,
3050
- 70,
3051
- 71,
3052
- 72,
3053
- 73,
3054
- 74,
3055
- 75,
3056
- 76,
3057
- 77,
3058
- 78,
3059
- 79,
3060
- 80,
3061
- 85,
3062
- 86,
3063
- 87,
3064
- 88,
3065
- 89,
3066
- 90,
3067
- 91,
3068
- 92,
3069
- 93,
3070
- 94,
3071
- 96
3072
- ],
3073
- inclusive: false
3074
- },
3075
- acc_descr_multiline: {
3076
- rules: [
3077
- 11,
3078
- 12,
3079
- 26,
3080
- 48,
3081
- 49,
3082
- 50,
3083
- 51,
3084
- 52,
3085
- 53,
3086
- 54,
3087
- 55,
3088
- 56,
3089
- 59,
3090
- 62,
3091
- 63,
3092
- 64,
3093
- 65,
3094
- 66,
3095
- 67,
3096
- 68,
3097
- 69,
3098
- 70,
3099
- 71,
3100
- 72,
3101
- 73,
3102
- 74,
3103
- 75,
3104
- 76,
3105
- 77,
3106
- 78,
3107
- 79,
3108
- 80,
3109
- 85,
3110
- 86,
3111
- 87,
3112
- 88,
3113
- 89,
3114
- 90,
3115
- 91,
3116
- 92,
3117
- 93,
3118
- 94,
3119
- 96
3120
- ],
3121
- inclusive: false
3122
- },
3123
- acc_descr: {
3124
- rules: [
3125
- 9,
3126
- 26,
3127
- 48,
3128
- 49,
3129
- 50,
3130
- 51,
3131
- 52,
3132
- 53,
3133
- 54,
3134
- 55,
3135
- 56,
3136
- 59,
3137
- 62,
3138
- 63,
3139
- 64,
3140
- 65,
3141
- 66,
3142
- 67,
3143
- 68,
3144
- 69,
3145
- 70,
3146
- 71,
3147
- 72,
3148
- 73,
3149
- 74,
3150
- 75,
3151
- 76,
3152
- 77,
3153
- 78,
3154
- 79,
3155
- 80,
3156
- 85,
3157
- 86,
3158
- 87,
3159
- 88,
3160
- 89,
3161
- 90,
3162
- 91,
3163
- 92,
3164
- 93,
3165
- 94,
3166
- 96
3167
- ],
3168
- inclusive: false
3169
- },
3170
- acc_title: {
3171
- rules: [
3172
- 7,
3173
- 26,
3174
- 48,
3175
- 49,
3176
- 50,
3177
- 51,
3178
- 52,
3179
- 53,
3180
- 54,
3181
- 55,
3182
- 56,
3183
- 59,
3184
- 62,
3185
- 63,
3186
- 64,
3187
- 65,
3188
- 66,
3189
- 67,
3190
- 68,
3191
- 69,
3192
- 70,
3193
- 71,
3194
- 72,
3195
- 73,
3196
- 74,
3197
- 75,
3198
- 76,
3199
- 77,
3200
- 78,
3201
- 79,
3202
- 80,
3203
- 85,
3204
- 86,
3205
- 87,
3206
- 88,
3207
- 89,
3208
- 90,
3209
- 91,
3210
- 92,
3211
- 93,
3212
- 94,
3213
- 96
3214
- ],
3215
- inclusive: false
3216
- },
3217
- callback_args: {
3218
- rules: [
3219
- 22,
3220
- 23,
3221
- 26,
3222
- 48,
3223
- 49,
3224
- 50,
3225
- 51,
3226
- 52,
3227
- 53,
3228
- 54,
3229
- 55,
3230
- 56,
3231
- 59,
3232
- 62,
3233
- 63,
3234
- 64,
3235
- 65,
3236
- 66,
3237
- 67,
3238
- 68,
3239
- 69,
3240
- 70,
3241
- 71,
3242
- 72,
3243
- 73,
3244
- 74,
3245
- 75,
3246
- 76,
3247
- 77,
3248
- 78,
3249
- 79,
3250
- 80,
3251
- 85,
3252
- 86,
3253
- 87,
3254
- 88,
3255
- 89,
3256
- 90,
3257
- 91,
3258
- 92,
3259
- 93,
3260
- 94,
3261
- 96
3262
- ],
3263
- inclusive: false
3264
- },
3265
- callback_name: {
3266
- rules: [
3267
- 19,
3268
- 20,
3269
- 21,
3270
- 26,
3271
- 48,
3272
- 49,
3273
- 50,
3274
- 51,
3275
- 52,
3276
- 53,
3277
- 54,
3278
- 55,
3279
- 56,
3280
- 59,
3281
- 62,
3282
- 63,
3283
- 64,
3284
- 65,
3285
- 66,
3286
- 67,
3287
- 68,
3288
- 69,
3289
- 70,
3290
- 71,
3291
- 72,
3292
- 73,
3293
- 74,
3294
- 75,
3295
- 76,
3296
- 77,
3297
- 78,
3298
- 79,
3299
- 80,
3300
- 85,
3301
- 86,
3302
- 87,
3303
- 88,
3304
- 89,
3305
- 90,
3306
- 91,
3307
- 92,
3308
- 93,
3309
- 94,
3310
- 96
3311
- ],
3312
- inclusive: false
3313
- },
3314
- href: {
3315
- rules: [
3316
- 26,
3317
- 48,
3318
- 49,
3319
- 50,
3320
- 51,
3321
- 52,
3322
- 53,
3323
- 54,
3324
- 55,
3325
- 56,
3326
- 59,
3327
- 62,
3328
- 63,
3329
- 64,
3330
- 65,
3331
- 66,
3332
- 67,
3333
- 68,
3334
- 69,
3335
- 70,
3336
- 71,
3337
- 72,
3338
- 73,
3339
- 74,
3340
- 75,
3341
- 76,
3342
- 77,
3343
- 78,
3344
- 79,
3345
- 80,
3346
- 85,
3347
- 86,
3348
- 87,
3349
- 88,
3350
- 89,
3351
- 90,
3352
- 91,
3353
- 92,
3354
- 93,
3355
- 94,
3356
- 96
3357
- ],
3358
- inclusive: false
3359
- },
3360
- struct: {
3361
- rules: [
3362
- 26,
3363
- 48,
3364
- 49,
3365
- 50,
3366
- 51,
3367
- 52,
3368
- 53,
3369
- 54,
3370
- 55,
3371
- 56,
3372
- 59,
3373
- 62,
3374
- 63,
3375
- 64,
3376
- 65,
3377
- 66,
3378
- 67,
3379
- 68,
3380
- 69,
3381
- 70,
3382
- 71,
3383
- 72,
3384
- 73,
3385
- 74,
3386
- 75,
3387
- 76,
3388
- 77,
3389
- 78,
3390
- 79,
3391
- 80,
3392
- 85,
3393
- 86,
3394
- 87,
3395
- 88,
3396
- 89,
3397
- 90,
3398
- 91,
3399
- 92,
3400
- 93,
3401
- 94,
3402
- 96
3403
- ],
3404
- inclusive: false
3405
- },
3406
- generic: {
3407
- rules: [
3408
- 26,
3409
- 48,
3410
- 49,
3411
- 50,
3412
- 51,
3413
- 52,
3414
- 53,
3415
- 54,
3416
- 55,
3417
- 56,
3418
- 57,
3419
- 58,
3420
- 59,
3421
- 62,
3422
- 63,
3423
- 64,
3424
- 65,
3425
- 66,
3426
- 67,
3427
- 68,
3428
- 69,
3429
- 70,
3430
- 71,
3431
- 72,
3432
- 73,
3433
- 74,
3434
- 75,
3435
- 76,
3436
- 77,
3437
- 78,
3438
- 79,
3439
- 80,
3440
- 85,
3441
- 86,
3442
- 87,
3443
- 88,
3444
- 89,
3445
- 90,
3446
- 91,
3447
- 92,
3448
- 93,
3449
- 94,
3450
- 96
3451
- ],
3452
- inclusive: false
3453
- },
3454
- bqstring: {
3455
- rules: [
3456
- 26,
3457
- 48,
3458
- 49,
3459
- 50,
3460
- 51,
3461
- 52,
3462
- 53,
3463
- 54,
3464
- 55,
3465
- 56,
3466
- 59,
3467
- 60,
3468
- 61,
3469
- 62,
3470
- 63,
3471
- 64,
3472
- 65,
3473
- 66,
3474
- 67,
3475
- 68,
3476
- 69,
3477
- 70,
3478
- 71,
3479
- 72,
3480
- 73,
3481
- 74,
3482
- 75,
3483
- 76,
3484
- 77,
3485
- 78,
3486
- 79,
3487
- 80,
3488
- 85,
3489
- 86,
3490
- 87,
3491
- 88,
3492
- 89,
3493
- 90,
3494
- 91,
3495
- 92,
3496
- 93,
3497
- 94,
3498
- 96
3499
- ],
3500
- inclusive: false
3501
- },
3502
- string: {
3503
- rules: [
3504
- 24,
3505
- 25,
3506
- 26,
3507
- 48,
3508
- 49,
3509
- 50,
3510
- 51,
3511
- 52,
3512
- 53,
3513
- 54,
3514
- 55,
3515
- 56,
3516
- 59,
3517
- 62,
3518
- 63,
3519
- 64,
3520
- 65,
3521
- 66,
3522
- 67,
3523
- 68,
3524
- 69,
3525
- 70,
3526
- 71,
3527
- 72,
3528
- 73,
3529
- 74,
3530
- 75,
3531
- 76,
3532
- 77,
3533
- 78,
3534
- 79,
3535
- 80,
3536
- 85,
3537
- 86,
3538
- 87,
3539
- 88,
3540
- 89,
3541
- 90,
3542
- 91,
3543
- 92,
3544
- 93,
3545
- 94,
3546
- 96
3547
- ],
3548
- inclusive: false
3549
- },
3550
- INITIAL: {
3551
- rules: [
3552
- 0,
3553
- 1,
3554
- 2,
3555
- 3,
3556
- 4,
3557
- 5,
3558
- 6,
3559
- 8,
3560
- 10,
3561
- 13,
3562
- 14,
3563
- 15,
3564
- 16,
3565
- 17,
3566
- 18,
3567
- 26,
3568
- 27,
3569
- 28,
3570
- 37,
3571
- 48,
3572
- 49,
3573
- 50,
3574
- 51,
3575
- 52,
3576
- 53,
3577
- 54,
3578
- 55,
3579
- 56,
3580
- 59,
3581
- 62,
3582
- 63,
3583
- 64,
3584
- 65,
3585
- 66,
3586
- 67,
3587
- 68,
3588
- 69,
3589
- 70,
3590
- 71,
3591
- 72,
3592
- 73,
3593
- 74,
3594
- 75,
3595
- 76,
3596
- 77,
3597
- 78,
3598
- 79,
3599
- 80,
3600
- 81,
3601
- 82,
3602
- 83,
3603
- 84,
3604
- 85,
3605
- 86,
3606
- 87,
3607
- 88,
3608
- 89,
3609
- 90,
3610
- 91,
3611
- 92,
3612
- 93,
3613
- 94,
3614
- 95,
3615
- 96
3616
- ],
3617
- inclusive: true
3618
- }
3619
- }
3620
- };
3621
- return x;
3622
- }();
3623
- Ne.lexer = et;
3624
- function Le() {
3625
- this.yy = {};
3626
- }
3627
- return Le.prototype = Ne, Ne.Parser = Le, new Le();
3628
- }();
3629
- Ve.parser = Ve;
3630
- var zt = Ve, Qe = [
3631
- "#",
3632
- "+",
3633
- "~",
3634
- "-",
3635
- ""
3636
- ];
3637
- var Xe = /*#__PURE__*/ function() {
3638
- function Xe(i, r) {
3639
- _class_call_check(this, Xe);
3640
- this.memberType = r, this.visibility = "", this.classifier = "";
3641
- var l = index.ai(i, index.Vn());
3642
- this.parseMember(l);
3643
- }
3644
- _create_class(Xe, [
3645
- {
3646
- key: "getDisplayDetails",
3647
- value: function getDisplayDetails() {
3648
- var i = this.visibility + index.C1(this.id);
3649
- this.memberType === "method" && (i += "(".concat(index.C1(this.parameters.trim()), ")"), this.returnType && (i += " : " + index.C1(this.returnType))), i = i.trim();
3650
- var r = this.parseClassifier();
3651
- return {
3652
- displayText: i,
3653
- cssStyle: r
3654
- };
3655
- }
3656
- },
3657
- {
3658
- key: "parseMember",
3659
- value: function parseMember(i) {
3660
- var r = "";
3661
- if (this.memberType === "method") {
3662
- var l = /([#+~-])?(.+)\((.*)\)([\s$*])?(.*)([$*])?/, o = i.match(l);
3663
- if (o) {
3664
- var A = o[1] ? o[1].trim() : "";
3665
- if (Qe.includes(A) && (this.visibility = A), this.id = o[2].trim(), this.parameters = o[3] ? o[3].trim() : "", r = o[4] ? o[4].trim() : "", this.returnType = o[5] ? o[5].trim() : "", r === "") {
3666
- var g = this.returnType.substring(this.returnType.length - 1);
3667
- g.match(/[$*]/) && (r = g, this.returnType = this.returnType.substring(0, this.returnType.length - 1));
3668
- }
3669
- }
3670
- } else {
3671
- var l1 = i.length, o1 = i.substring(0, 1), A1 = i.substring(l1 - 1);
3672
- Qe.includes(o1) && (this.visibility = o1), A1.match(/[$*]/) && (r = A1), this.id = i.substring(this.visibility === "" ? 0 : 1, r === "" ? l1 : l1 - 1);
3673
- }
3674
- this.classifier = r;
3675
- }
3676
- },
3677
- {
3678
- key: "parseClassifier",
3679
- value: function parseClassifier() {
3680
- switch(this.classifier){
3681
- case "*":
3682
- return "font-style:italic;";
3683
- case "$":
3684
- return "text-decoration:underline;";
3685
- default:
3686
- return "";
3687
- }
3688
- }
3689
- }
3690
- ]);
3691
- return Xe;
3692
- }();
3693
- var pe = "classId-";
3694
- var Pe = [], p = {}, he = [], He = 0, O = {}, we = 0, K = [];
3695
- var V = function(e) {
3696
- return index.$n.sanitizeText(e, index.Vn());
3697
- }, w = function w(e) {
3698
- var i = index.$n.sanitizeText(e, index.Vn());
3699
- var r = "", l = i;
3700
- if (i.indexOf("~") > 0) {
3701
- var o = i.split("~");
3702
- l = V(o[0]), r = V(o[1]);
3703
- }
3704
- return {
3705
- className: l,
3706
- type: r
3707
- };
3708
- }, ft = function ft(e, i) {
3709
- var r = index.$n.sanitizeText(e, index.Vn());
3710
- i && (i = V(i));
3711
- var _w = w(r), l = _w.className;
3712
- p[l].label = i;
3713
- }, Ae = function Ae(e) {
3714
- var i = index.$n.sanitizeText(e, index.Vn()), _w = w(i), r = _w.className, l = _w.type;
3715
- if (Object.hasOwn(p, r)) return;
3716
- var o = index.$n.sanitizeText(r, index.Vn());
3717
- p[o] = {
3718
- id: o,
3719
- type: l,
3720
- label: o,
3721
- cssClasses: [],
3722
- methods: [],
3723
- members: [],
3724
- annotations: [],
3725
- styles: [],
3726
- domId: pe + o + "-" + He
3727
- }, He++;
3728
- }, qe = function qe(e) {
3729
- var i = index.$n.sanitizeText(e, index.Vn());
3730
- if (i in p) return p[i].domId;
3731
- throw new Error("Class not found: " + i);
3732
- }, dt = function dt() {
3733
- Pe = [], p = {}, he = [], K = [], K.push(Ze), O = {}, we = 0, index.B_();
3734
- }, Et = function Et(e) {
3735
- return p[e];
3736
- }, Ct = function Ct() {
3737
- return p;
3738
- }, mt = function mt() {
3739
- return Pe;
3740
- }, bt = function bt() {
3741
- return he;
3742
- }, gt = function gt(e) {
3743
- index.L.debug("Adding relation: " + JSON.stringify(e)), Ae(e.id1), Ae(e.id2), e.id1 = w(e.id1).className, e.id2 = w(e.id2).className, e.relationTitle1 = index.$n.sanitizeText(e.relationTitle1.trim(), index.Vn()), e.relationTitle2 = index.$n.sanitizeText(e.relationTitle2.trim(), index.Vn()), Pe.push(e);
3744
- }, kt = function kt(e, i) {
3745
- var r = w(e).className;
3746
- p[r].annotations.push(i);
3747
- }, Je = function Je(e, i) {
3748
- Ae(e);
3749
- var r = w(e).className, l = p[r];
3750
- if (typeof i == "string") {
3751
- var o = i.trim();
3752
- o.startsWith("<<") && o.endsWith(">>") ? l.annotations.push(V(o.substring(2, o.length - 2))) : o.indexOf(")") > 0 ? l.methods.push(new Xe(o, "method")) : o && l.members.push(new Xe(o, "attribute"));
3753
- }
3754
- }, Tt = function Tt(e, i) {
3755
- Array.isArray(i) && (i.reverse(), i.forEach(function(r) {
3756
- return Je(e, r);
3757
- }));
3758
- }, Ft = function Ft(e, i) {
3759
- var r = {
3760
- id: "note".concat(he.length),
3761
- class: i,
3762
- text: e
3763
- };
3764
- he.push(r);
3765
- }, yt = function yt(e) {
3766
- return e.startsWith(":") && (e = e.substring(1)), V(e.trim());
3767
- }, Me = function Me(e, i) {
3768
- e.split(",").forEach(function(r) {
3769
- var l = r;
3770
- r[0].match(/\d/) && (l = pe + l), p[l] !== void 0 && p[l].cssClasses.push(i);
3771
- });
3772
- }, Dt = function Dt(e, i) {
3773
- e.split(",").forEach(function(r) {
3774
- i !== void 0 && (p[r].tooltip = V(i));
3775
- });
3776
- }, Bt = function Bt(e, i) {
3777
- return i ? O[i].classes[e].tooltip : p[e].tooltip;
3778
- }, _t = function _t(e, i, r) {
3779
- var l = index.Vn();
3780
- e.split(",").forEach(function(o) {
3781
- var A = o;
3782
- o[0].match(/\d/) && (A = pe + A), p[A] !== void 0 && (p[A].link = index.ei.formatUrl(i, l), l.securityLevel === "sandbox" ? p[A].linkTarget = "_top" : typeof r == "string" ? p[A].linkTarget = V(r) : p[A].linkTarget = "_blank");
3783
- }), Me(e, "clickable");
3784
- }, St = function St(e, i, r) {
3785
- e.split(",").forEach(function(l) {
3786
- Nt(l, i, r), p[l].haveCallback = true;
3787
- }), Me(e, "clickable");
3788
- }, Nt = function Nt(e, i, r) {
3789
- var l = index.$n.sanitizeText(e, index.Vn());
3790
- if (index.Vn().securityLevel !== "loose" || i === void 0) return;
3791
- var A = l;
3792
- if (p[A] !== void 0) {
3793
- var g = qe(A);
3794
- var D = [];
3795
- if (typeof r == "string") {
3796
- D = r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
3797
- for(var B = 0; B < D.length; B++){
3798
- var _ = D[B].trim();
3799
- _.charAt(0) === '"' && _.charAt(_.length - 1) === '"' && (_ = _.substr(1, _.length - 2)), D[B] = _;
3800
- }
3801
- }
3802
- D.length === 0 && D.push(g), K.push(function() {
3803
- var B = document.querySelector('[id="'.concat(g, '"]'));
3804
- B !== null && B.addEventListener("click", function() {
3805
- var _We;
3806
- (_We = index.ei).runFunc.apply(_We, [
3807
- i
3808
- ].concat(_to_consumable_array(D)));
3809
- }, false);
3810
- });
3811
- }
3812
- }, Lt = function Lt(e) {
3813
- K.forEach(function(i) {
3814
- i(e);
3815
- });
3816
- }, vt = {
3817
- LINE: 0,
3818
- DOTTED_LINE: 1
3819
- }, xt = {
3820
- AGGREGATION: 0,
3821
- EXTENSION: 1,
3822
- COMPOSITION: 2,
3823
- DEPENDENCY: 3,
3824
- LOLLIPOP: 4
3825
- }, Ze = function Ze(e) {
3826
- var i = index.bt(".mermaidTooltip");
3827
- (i._groups || i)[0][0] === null && (i = index.bt("body").append("div").attr("class", "mermaidTooltip").style("opacity", 0)), index.bt(e).select("svg").selectAll("g.node").on("mouseover", function() {
3828
- var o = index.bt(this);
3829
- if (o.attr("title") === null) return;
3830
- var g = this.getBoundingClientRect();
3831
- i.transition().duration(200).style("opacity", ".9"), i.text(o.attr("title")).style("left", window.scrollX + g.left + (g.right - g.left) / 2 + "px").style("top", window.scrollY + g.top - 14 + document.body.scrollTop + "px"), i.html(i.html().replace(/&lt;br\/&gt;/g, "<br/>")), o.classed("hover", true);
3832
- }).on("mouseout", function() {
3833
- i.transition().duration(500).style("opacity", 0), index.bt(this).classed("hover", false);
3834
- });
3835
- };
3836
- K.push(Ze);
3837
- var $e = "TB";
3838
- var Ot = function() {
3839
- return $e;
3840
- }, It = function(e) {
3841
- $e = e;
3842
- }, Rt = function Rt(e) {
3843
- O[e] === void 0 && (O[e] = {
3844
- id: e,
3845
- classes: {},
3846
- children: {},
3847
- domId: pe + e + "-" + we
3848
- }, we++);
3849
- }, Vt = function Vt(e) {
3850
- return O[e];
3851
- }, wt = function wt() {
3852
- return O;
3853
- }, Pt = function Pt(e, i) {
3854
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
3855
- if (O[e] !== void 0) try {
3856
- for(var _iterator = i[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
3857
- var r = _step.value;
3858
- var _w = w(r), l = _w.className;
3859
- p[l].parent = e, O[e].classes[l] = p[l];
3860
- }
3861
- } catch (err) {
3862
- _didIteratorError = true;
3863
- _iteratorError = err;
3864
- } finally{
3865
- try {
3866
- if (!_iteratorNormalCompletion && _iterator.return != null) {
3867
- _iterator.return();
3868
- }
3869
- } finally{
3870
- if (_didIteratorError) {
3871
- throw _iteratorError;
3872
- }
3873
- }
3874
- }
3875
- }, Mt = function Mt(e, i) {
3876
- var _r_styles;
3877
- var r = p[e];
3878
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
3879
- if (!(!i || !r)) try {
3880
- for(var _iterator = i[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
3881
- var l = _step.value;
3882
- l.includes(",") ? (_r_styles = r.styles).push.apply(_r_styles, _to_consumable_array(l.split(","))) : r.styles.push(l);
3883
- }
3884
- } catch (err) {
3885
- _didIteratorError = true;
3886
- _iteratorError = err;
3887
- } finally{
3888
- try {
3889
- if (!_iteratorNormalCompletion && _iterator.return != null) {
3890
- _iterator.return();
3891
- }
3892
- } finally{
3893
- if (_didIteratorError) {
3894
- throw _iteratorError;
3895
- }
3896
- }
3897
- }
3898
- }, Kt = {
3899
- setAccTitle: index.F_,
3900
- getAccTitle: index.A_,
3901
- getAccDescription: index.E_,
3902
- setAccDescription: index.L_,
3903
- getConfig: function() {
3904
- return index.Vn().class;
3905
- },
3906
- addClass: Ae,
3907
- bindFunctions: Lt,
3908
- clear: dt,
3909
- getClass: Et,
3910
- getClasses: Ct,
3911
- getNotes: bt,
3912
- addAnnotation: kt,
3913
- addNote: Ft,
3914
- getRelations: mt,
3915
- addRelation: gt,
3916
- getDirection: Ot,
3917
- setDirection: It,
3918
- addMember: Je,
3919
- addMembers: Tt,
3920
- cleanupLabel: yt,
3921
- lineType: vt,
3922
- relationType: xt,
3923
- setClickEvent: St,
3924
- setCssClass: Me,
3925
- setLink: _t,
3926
- getTooltip: Bt,
3927
- setTooltip: Dt,
3928
- lookUpDomId: qe,
3929
- setDiagramTitle: index.M_,
3930
- getDiagramTitle: index.O_,
3931
- setClassLabel: ft,
3932
- addNamespace: Rt,
3933
- addClassesToNamespace: Pt,
3934
- getNamespace: Vt,
3935
- getNamespaces: wt,
3936
- setCssStyle: Mt
3937
- }, Gt = function(e) {
3938
- return "g.classGroup text {\n fill: ".concat(e.nodeBorder || e.classText, ";\n stroke: none;\n font-family: ").concat(e.fontFamily, ";\n font-size: 10px;\n\n .title {\n font-weight: bolder;\n }\n\n}\n\n.nodeLabel, .edgeLabel {\n color: ").concat(e.classText, ";\n}\n.edgeLabel .label rect {\n fill: ").concat(e.mainBkg, ";\n}\n.label text {\n fill: ").concat(e.classText, ";\n}\n.edgeLabel .label span {\n background: ").concat(e.mainBkg, ";\n}\n\n.classTitle {\n font-weight: bolder;\n}\n.node rect,\n .node circle,\n .node ellipse,\n .node polygon,\n .node path {\n fill: ").concat(e.mainBkg, ";\n stroke: ").concat(e.nodeBorder, ";\n stroke-width: 1px;\n }\n\n\n.divider {\n stroke: ").concat(e.nodeBorder, ";\n stroke-width: 1;\n}\n\ng.clickable {\n cursor: pointer;\n}\n\ng.classGroup rect {\n fill: ").concat(e.mainBkg, ";\n stroke: ").concat(e.nodeBorder, ";\n}\n\ng.classGroup line {\n stroke: ").concat(e.nodeBorder, ";\n stroke-width: 1;\n}\n\n.classLabel .box {\n stroke: none;\n stroke-width: 0;\n fill: ").concat(e.mainBkg, ";\n opacity: 0.5;\n}\n\n.classLabel .label {\n fill: ").concat(e.nodeBorder, ";\n font-size: 10px;\n}\n\n.relation {\n stroke: ").concat(e.lineColor, ";\n stroke-width: 1;\n fill: none;\n}\n\n.dashed-line{\n stroke-dasharray: 3;\n}\n\n.dotted-line{\n stroke-dasharray: 1 2;\n}\n\n#compositionStart, .composition {\n fill: ").concat(e.lineColor, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#compositionEnd, .composition {\n fill: ").concat(e.lineColor, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#dependencyStart, .dependency {\n fill: ").concat(e.lineColor, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#dependencyStart, .dependency {\n fill: ").concat(e.lineColor, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#extensionStart, .extension {\n fill: transparent !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#extensionEnd, .extension {\n fill: transparent !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#aggregationStart, .aggregation {\n fill: transparent !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#aggregationEnd, .aggregation {\n fill: transparent !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#lollipopStart, .lollipop {\n fill: ").concat(e.mainBkg, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n#lollipopEnd, .lollipop {\n fill: ").concat(e.mainBkg, " !important;\n stroke: ").concat(e.lineColor, " !important;\n stroke-width: 1;\n}\n\n.edgeTerminals {\n font-size: 11px;\n line-height: initial;\n}\n\n.classTitleText {\n text-anchor: middle;\n font-size: 18px;\n fill: ").concat(e.textColor, ";\n}\n");
3939
- }, Yt = Gt;
3940
-
3941
- exports.Kt = Kt;
3942
- exports.Yt = Yt;
3943
- exports.zt = zt;