@nowline/core 0.2.0

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 (69) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +84 -0
  3. package/dist/generated/ast.d.ts +958 -0
  4. package/dist/generated/ast.d.ts.map +1 -0
  5. package/dist/generated/ast.js +795 -0
  6. package/dist/generated/ast.js.map +1 -0
  7. package/dist/generated/grammar.d.ts +7 -0
  8. package/dist/generated/grammar.d.ts.map +1 -0
  9. package/dist/generated/grammar.js +2509 -0
  10. package/dist/generated/grammar.js.map +1 -0
  11. package/dist/generated/module.d.ts +14 -0
  12. package/dist/generated/module.d.ts.map +1 -0
  13. package/dist/generated/module.js +21 -0
  14. package/dist/generated/module.js.map +1 -0
  15. package/dist/i18n/codes.d.ts +3 -0
  16. package/dist/i18n/codes.d.ts.map +1 -0
  17. package/dist/i18n/codes.js +54 -0
  18. package/dist/i18n/codes.js.map +1 -0
  19. package/dist/i18n/index.d.ts +17 -0
  20. package/dist/i18n/index.d.ts.map +1 -0
  21. package/dist/i18n/index.js +82 -0
  22. package/dist/i18n/index.js.map +1 -0
  23. package/dist/i18n/messages.en.d.ts +96 -0
  24. package/dist/i18n/messages.en.d.ts.map +1 -0
  25. package/dist/i18n/messages.en.js +57 -0
  26. package/dist/i18n/messages.en.js.map +1 -0
  27. package/dist/i18n/messages.fr-CA.d.ts +3 -0
  28. package/dist/i18n/messages.fr-CA.d.ts.map +1 -0
  29. package/dist/i18n/messages.fr-CA.js +11 -0
  30. package/dist/i18n/messages.fr-CA.js.map +1 -0
  31. package/dist/i18n/messages.fr-FR.d.ts +3 -0
  32. package/dist/i18n/messages.fr-FR.d.ts.map +1 -0
  33. package/dist/i18n/messages.fr-FR.js +11 -0
  34. package/dist/i18n/messages.fr-FR.js.map +1 -0
  35. package/dist/i18n/messages.fr.d.ts +3 -0
  36. package/dist/i18n/messages.fr.d.ts.map +1 -0
  37. package/dist/i18n/messages.fr.js +55 -0
  38. package/dist/i18n/messages.fr.js.map +1 -0
  39. package/dist/index.d.ts +9 -0
  40. package/dist/index.d.ts.map +1 -0
  41. package/dist/index.js +8 -0
  42. package/dist/index.js.map +1 -0
  43. package/dist/language/include-resolver.d.ts +46 -0
  44. package/dist/language/include-resolver.d.ts.map +1 -0
  45. package/dist/language/include-resolver.js +306 -0
  46. package/dist/language/include-resolver.js.map +1 -0
  47. package/dist/language/nowline-module.d.ts +18 -0
  48. package/dist/language/nowline-module.d.ts.map +1 -0
  49. package/dist/language/nowline-module.js +63 -0
  50. package/dist/language/nowline-module.js.map +1 -0
  51. package/dist/language/nowline-validator.d.ts +65 -0
  52. package/dist/language/nowline-validator.d.ts.map +1 -0
  53. package/dist/language/nowline-validator.js +1654 -0
  54. package/dist/language/nowline-validator.js.map +1 -0
  55. package/package.json +37 -0
  56. package/src/generated/ast.ts +1178 -0
  57. package/src/generated/grammar.ts +2511 -0
  58. package/src/generated/module.ts +25 -0
  59. package/src/i18n/codes.ts +102 -0
  60. package/src/i18n/index.ts +102 -0
  61. package/src/i18n/messages.en.ts +86 -0
  62. package/src/i18n/messages.fr-CA.ts +13 -0
  63. package/src/i18n/messages.fr-FR.ts +13 -0
  64. package/src/i18n/messages.fr.ts +91 -0
  65. package/src/index.ts +22 -0
  66. package/src/language/include-resolver.ts +470 -0
  67. package/src/language/nowline-module.ts +114 -0
  68. package/src/language/nowline-validator.ts +1991 -0
  69. package/src/language/nowline.langium +217 -0
@@ -0,0 +1,795 @@
1
+ /******************************************************************************
2
+ * This file was generated by langium-cli 4.2.0.
3
+ * DO NOT EDIT MANUALLY!
4
+ ******************************************************************************/
5
+ /* eslint-disable */
6
+ import * as langium from 'langium';
7
+ export const NowlineTerminals = {
8
+ INDENT: /\x01/,
9
+ DEDENT: /\x02/,
10
+ INCLUDE_OPTION_KEY: /(config|roadmap):/,
11
+ URL: /https?:\/\/[^\s\[\],]+/,
12
+ STRING: /"([^"\\]|\\.)*"/,
13
+ DATE_LITERAL: /\d{4}-\d{2}-\d{2}/,
14
+ DURATION_LITERAL: /\d+(\.\d+)?[dwmqy]/,
15
+ PERCENTAGE: /\d+(\.\d+)?%/,
16
+ COLOR_HEX: /#[0-9a-fA-F]{3,8}/,
17
+ DECIMAL: /\d+\.\d+/,
18
+ INTEGER: /\d+/,
19
+ PROPERTY_KEY_WITH_COLON: /[a-zA-Z_][a-zA-Z0-9_-]*:/,
20
+ ID: /[a-zA-Z_][a-zA-Z0-9_-]*/,
21
+ WS: /[\t ]+/,
22
+ NL: /[\r\n]+/,
23
+ SL_COMMENT: /\/\/[^\r\n]*/,
24
+ ML_COMMENT: /\/\*[\s\S]*?\*\//,
25
+ LINE_CONTINUATION: /\\[ \t]*\r?\n[ \t]*/,
26
+ };
27
+ export const AnchorDeclaration = {
28
+ $type: 'AnchorDeclaration',
29
+ description: 'description',
30
+ name: 'name',
31
+ properties: 'properties',
32
+ title: 'title'
33
+ };
34
+ export function isAnchorDeclaration(item) {
35
+ return reflection.isInstance(item, AnchorDeclaration.$type);
36
+ }
37
+ export const BlockProperty = {
38
+ $type: 'BlockProperty',
39
+ key: 'key',
40
+ value: 'value'
41
+ };
42
+ export function isBlockProperty(item) {
43
+ return reflection.isInstance(item, BlockProperty.$type);
44
+ }
45
+ export function isBlockPropertyValue(item) {
46
+ return (typeof item === 'string' && (/[a-zA-Z_][a-zA-Z0-9_-]*/.test(item) || /\d+/.test(item) || /"([^"\\]|\\.)*"/.test(item) || /\d+(\.\d+)?[dwmqy]/.test(item)));
47
+ }
48
+ export const CalendarBlock = {
49
+ $type: 'CalendarBlock',
50
+ properties: 'properties'
51
+ };
52
+ export function isCalendarBlock(item) {
53
+ return reflection.isInstance(item, CalendarBlock.$type);
54
+ }
55
+ export const ConfigEntry = {
56
+ $type: 'ConfigEntry'
57
+ };
58
+ export function isConfigEntry(item) {
59
+ return reflection.isInstance(item, ConfigEntry.$type);
60
+ }
61
+ export const DefaultDeclaration = {
62
+ $type: 'DefaultDeclaration',
63
+ entityType: 'entityType',
64
+ properties: 'properties'
65
+ };
66
+ export function isDefaultDeclaration(item) {
67
+ return reflection.isInstance(item, DefaultDeclaration.$type);
68
+ }
69
+ export function isDefaultEntityType(item) {
70
+ return item === 'item' || item === 'label' || item === 'swimlane' || item === 'roadmap' || item === 'milestone' || item === 'footnote' || item === 'anchor' || item === 'parallel' || item === 'group';
71
+ }
72
+ export const DescriptionDirective = {
73
+ $type: 'DescriptionDirective',
74
+ text: 'text'
75
+ };
76
+ export function isDescriptionDirective(item) {
77
+ return reflection.isInstance(item, DescriptionDirective.$type);
78
+ }
79
+ export const EntityProperty = {
80
+ $type: 'EntityProperty',
81
+ key: 'key',
82
+ value: 'value',
83
+ values: 'values'
84
+ };
85
+ export function isEntityProperty(item) {
86
+ return reflection.isInstance(item, EntityProperty.$type);
87
+ }
88
+ export const FootnoteDeclaration = {
89
+ $type: 'FootnoteDeclaration',
90
+ description: 'description',
91
+ name: 'name',
92
+ properties: 'properties',
93
+ title: 'title'
94
+ };
95
+ export function isFootnoteDeclaration(item) {
96
+ return reflection.isInstance(item, FootnoteDeclaration.$type);
97
+ }
98
+ export const GroupBlock = {
99
+ $type: 'GroupBlock',
100
+ content: 'content',
101
+ name: 'name',
102
+ properties: 'properties',
103
+ title: 'title'
104
+ };
105
+ export function isGroupBlock(item) {
106
+ return reflection.isInstance(item, GroupBlock.$type);
107
+ }
108
+ export const GroupContent = {
109
+ $type: 'GroupContent'
110
+ };
111
+ export function isGroupContent(item) {
112
+ return reflection.isInstance(item, GroupContent.$type);
113
+ }
114
+ export const IncludeDeclaration = {
115
+ $type: 'IncludeDeclaration',
116
+ options: 'options',
117
+ path: 'path'
118
+ };
119
+ export function isIncludeDeclaration(item) {
120
+ return reflection.isInstance(item, IncludeDeclaration.$type);
121
+ }
122
+ export const IncludeOption = {
123
+ $type: 'IncludeOption',
124
+ key: 'key',
125
+ value: 'value'
126
+ };
127
+ export function isIncludeOption(item) {
128
+ return reflection.isInstance(item, IncludeOption.$type);
129
+ }
130
+ export const ItemDeclaration = {
131
+ $type: 'ItemDeclaration',
132
+ description: 'description',
133
+ name: 'name',
134
+ properties: 'properties',
135
+ title: 'title'
136
+ };
137
+ export function isItemDeclaration(item) {
138
+ return reflection.isInstance(item, ItemDeclaration.$type);
139
+ }
140
+ export const LabelDeclaration = {
141
+ $type: 'LabelDeclaration',
142
+ description: 'description',
143
+ name: 'name',
144
+ properties: 'properties',
145
+ title: 'title'
146
+ };
147
+ export function isLabelDeclaration(item) {
148
+ return reflection.isInstance(item, LabelDeclaration.$type);
149
+ }
150
+ export const MilestoneDeclaration = {
151
+ $type: 'MilestoneDeclaration',
152
+ description: 'description',
153
+ name: 'name',
154
+ properties: 'properties',
155
+ title: 'title'
156
+ };
157
+ export function isMilestoneDeclaration(item) {
158
+ return reflection.isInstance(item, MilestoneDeclaration.$type);
159
+ }
160
+ export const NowlineDirective = {
161
+ $type: 'NowlineDirective',
162
+ properties: 'properties',
163
+ version: 'version'
164
+ };
165
+ export function isNowlineDirective(item) {
166
+ return reflection.isInstance(item, NowlineDirective.$type);
167
+ }
168
+ export const NowlineFile = {
169
+ $type: 'NowlineFile',
170
+ configEntries: 'configEntries',
171
+ directive: 'directive',
172
+ hasConfig: 'hasConfig',
173
+ includes: 'includes',
174
+ roadmapDecl: 'roadmapDecl',
175
+ roadmapEntries: 'roadmapEntries'
176
+ };
177
+ export function isNowlineFile(item) {
178
+ return reflection.isInstance(item, NowlineFile.$type);
179
+ }
180
+ export const ParallelBlock = {
181
+ $type: 'ParallelBlock',
182
+ content: 'content',
183
+ name: 'name',
184
+ properties: 'properties',
185
+ title: 'title'
186
+ };
187
+ export function isParallelBlock(item) {
188
+ return reflection.isInstance(item, ParallelBlock.$type);
189
+ }
190
+ export const ParallelContent = {
191
+ $type: 'ParallelContent'
192
+ };
193
+ export function isParallelContent(item) {
194
+ return reflection.isInstance(item, ParallelContent.$type);
195
+ }
196
+ export const PersonDeclaration = {
197
+ $type: 'PersonDeclaration',
198
+ description: 'description',
199
+ name: 'name',
200
+ properties: 'properties',
201
+ title: 'title'
202
+ };
203
+ export function isPersonDeclaration(item) {
204
+ return reflection.isInstance(item, PersonDeclaration.$type);
205
+ }
206
+ export const PersonMemberRef = {
207
+ $type: 'PersonMemberRef',
208
+ ref: 'ref'
209
+ };
210
+ export function isPersonMemberRef(item) {
211
+ return reflection.isInstance(item, PersonMemberRef.$type);
212
+ }
213
+ export function isPropertyAtom(item) {
214
+ return item === 'person' || (typeof item === 'string' && (/[a-zA-Z_][a-zA-Z0-9_-]*/.test(item) || /"([^"\\]|\\.)*"/.test(item) || /\d+(\.\d+)?[dwmqy]/.test(item) || /\d+(\.\d+)?%/.test(item) || /https?:\/\/[^\s\[\],]+/.test(item) || /\d{4}-\d{2}-\d{2}/.test(item) || /#[0-9a-fA-F]{3,8}/.test(item) || /\d+\.\d+/.test(item) || /\d+/.test(item)));
215
+ }
216
+ export const RoadmapDeclaration = {
217
+ $type: 'RoadmapDeclaration',
218
+ name: 'name',
219
+ properties: 'properties',
220
+ title: 'title'
221
+ };
222
+ export function isRoadmapDeclaration(item) {
223
+ return reflection.isInstance(item, RoadmapDeclaration.$type);
224
+ }
225
+ export const RoadmapEntry = {
226
+ $type: 'RoadmapEntry'
227
+ };
228
+ export function isRoadmapEntry(item) {
229
+ return reflection.isInstance(item, RoadmapEntry.$type);
230
+ }
231
+ export const ScaleBlock = {
232
+ $type: 'ScaleBlock',
233
+ properties: 'properties'
234
+ };
235
+ export function isScaleBlock(item) {
236
+ return reflection.isInstance(item, ScaleBlock.$type);
237
+ }
238
+ export const SizeDeclaration = {
239
+ $type: 'SizeDeclaration',
240
+ description: 'description',
241
+ name: 'name',
242
+ properties: 'properties',
243
+ title: 'title'
244
+ };
245
+ export function isSizeDeclaration(item) {
246
+ return reflection.isInstance(item, SizeDeclaration.$type);
247
+ }
248
+ export const StatusDeclaration = {
249
+ $type: 'StatusDeclaration',
250
+ description: 'description',
251
+ name: 'name',
252
+ properties: 'properties',
253
+ title: 'title'
254
+ };
255
+ export function isStatusDeclaration(item) {
256
+ return reflection.isInstance(item, StatusDeclaration.$type);
257
+ }
258
+ export const StyleDeclaration = {
259
+ $type: 'StyleDeclaration',
260
+ name: 'name',
261
+ properties: 'properties',
262
+ title: 'title'
263
+ };
264
+ export function isStyleDeclaration(item) {
265
+ return reflection.isInstance(item, StyleDeclaration.$type);
266
+ }
267
+ export const StyleProperty = {
268
+ $type: 'StyleProperty',
269
+ key: 'key',
270
+ value: 'value'
271
+ };
272
+ export function isStyleProperty(item) {
273
+ return reflection.isInstance(item, StyleProperty.$type);
274
+ }
275
+ export function isStylePropertyValue(item) {
276
+ return item === 'person' || (typeof item === 'string' && (/[a-zA-Z_][a-zA-Z0-9_-]*/.test(item) || /#[0-9a-fA-F]{3,8}/.test(item) || /"([^"\\]|\\.)*"/.test(item)));
277
+ }
278
+ export const SwimlaneContent = {
279
+ $type: 'SwimlaneContent'
280
+ };
281
+ export function isSwimlaneContent(item) {
282
+ return reflection.isInstance(item, SwimlaneContent.$type);
283
+ }
284
+ export const SwimlaneDeclaration = {
285
+ $type: 'SwimlaneDeclaration',
286
+ content: 'content',
287
+ name: 'name',
288
+ properties: 'properties',
289
+ title: 'title'
290
+ };
291
+ export function isSwimlaneDeclaration(item) {
292
+ return reflection.isInstance(item, SwimlaneDeclaration.$type);
293
+ }
294
+ export const SymbolDeclaration = {
295
+ $type: 'SymbolDeclaration',
296
+ description: 'description',
297
+ name: 'name',
298
+ properties: 'properties',
299
+ title: 'title'
300
+ };
301
+ export function isSymbolDeclaration(item) {
302
+ return reflection.isInstance(item, SymbolDeclaration.$type);
303
+ }
304
+ export const TeamContent = {
305
+ $type: 'TeamContent'
306
+ };
307
+ export function isTeamContent(item) {
308
+ return reflection.isInstance(item, TeamContent.$type);
309
+ }
310
+ export const TeamDeclaration = {
311
+ $type: 'TeamDeclaration',
312
+ content: 'content',
313
+ name: 'name',
314
+ properties: 'properties',
315
+ title: 'title'
316
+ };
317
+ export function isTeamDeclaration(item) {
318
+ return reflection.isInstance(item, TeamDeclaration.$type);
319
+ }
320
+ export class NowlineAstReflection extends langium.AbstractAstReflection {
321
+ types = {
322
+ AnchorDeclaration: {
323
+ name: AnchorDeclaration.$type,
324
+ properties: {
325
+ description: {
326
+ name: AnchorDeclaration.description
327
+ },
328
+ name: {
329
+ name: AnchorDeclaration.name
330
+ },
331
+ properties: {
332
+ name: AnchorDeclaration.properties,
333
+ defaultValue: []
334
+ },
335
+ title: {
336
+ name: AnchorDeclaration.title
337
+ }
338
+ },
339
+ superTypes: [RoadmapEntry.$type]
340
+ },
341
+ BlockProperty: {
342
+ name: BlockProperty.$type,
343
+ properties: {
344
+ key: {
345
+ name: BlockProperty.key
346
+ },
347
+ value: {
348
+ name: BlockProperty.value
349
+ }
350
+ },
351
+ superTypes: []
352
+ },
353
+ CalendarBlock: {
354
+ name: CalendarBlock.$type,
355
+ properties: {
356
+ properties: {
357
+ name: CalendarBlock.properties,
358
+ defaultValue: []
359
+ }
360
+ },
361
+ superTypes: [ConfigEntry.$type]
362
+ },
363
+ ConfigEntry: {
364
+ name: ConfigEntry.$type,
365
+ properties: {},
366
+ superTypes: []
367
+ },
368
+ DefaultDeclaration: {
369
+ name: DefaultDeclaration.$type,
370
+ properties: {
371
+ entityType: {
372
+ name: DefaultDeclaration.entityType
373
+ },
374
+ properties: {
375
+ name: DefaultDeclaration.properties,
376
+ defaultValue: []
377
+ }
378
+ },
379
+ superTypes: [ConfigEntry.$type]
380
+ },
381
+ DescriptionDirective: {
382
+ name: DescriptionDirective.$type,
383
+ properties: {
384
+ text: {
385
+ name: DescriptionDirective.text
386
+ }
387
+ },
388
+ superTypes: [GroupContent.$type, ParallelContent.$type, SwimlaneContent.$type, TeamContent.$type]
389
+ },
390
+ EntityProperty: {
391
+ name: EntityProperty.$type,
392
+ properties: {
393
+ key: {
394
+ name: EntityProperty.key
395
+ },
396
+ value: {
397
+ name: EntityProperty.value
398
+ },
399
+ values: {
400
+ name: EntityProperty.values,
401
+ defaultValue: []
402
+ }
403
+ },
404
+ superTypes: []
405
+ },
406
+ FootnoteDeclaration: {
407
+ name: FootnoteDeclaration.$type,
408
+ properties: {
409
+ description: {
410
+ name: FootnoteDeclaration.description
411
+ },
412
+ name: {
413
+ name: FootnoteDeclaration.name
414
+ },
415
+ properties: {
416
+ name: FootnoteDeclaration.properties,
417
+ defaultValue: []
418
+ },
419
+ title: {
420
+ name: FootnoteDeclaration.title
421
+ }
422
+ },
423
+ superTypes: [RoadmapEntry.$type]
424
+ },
425
+ GroupBlock: {
426
+ name: GroupBlock.$type,
427
+ properties: {
428
+ content: {
429
+ name: GroupBlock.content,
430
+ defaultValue: []
431
+ },
432
+ name: {
433
+ name: GroupBlock.name
434
+ },
435
+ properties: {
436
+ name: GroupBlock.properties,
437
+ defaultValue: []
438
+ },
439
+ title: {
440
+ name: GroupBlock.title
441
+ }
442
+ },
443
+ superTypes: [GroupContent.$type, ParallelContent.$type, SwimlaneContent.$type]
444
+ },
445
+ GroupContent: {
446
+ name: GroupContent.$type,
447
+ properties: {},
448
+ superTypes: []
449
+ },
450
+ IncludeDeclaration: {
451
+ name: IncludeDeclaration.$type,
452
+ properties: {
453
+ options: {
454
+ name: IncludeDeclaration.options,
455
+ defaultValue: []
456
+ },
457
+ path: {
458
+ name: IncludeDeclaration.path
459
+ }
460
+ },
461
+ superTypes: []
462
+ },
463
+ IncludeOption: {
464
+ name: IncludeOption.$type,
465
+ properties: {
466
+ key: {
467
+ name: IncludeOption.key
468
+ },
469
+ value: {
470
+ name: IncludeOption.value
471
+ }
472
+ },
473
+ superTypes: []
474
+ },
475
+ ItemDeclaration: {
476
+ name: ItemDeclaration.$type,
477
+ properties: {
478
+ description: {
479
+ name: ItemDeclaration.description
480
+ },
481
+ name: {
482
+ name: ItemDeclaration.name
483
+ },
484
+ properties: {
485
+ name: ItemDeclaration.properties,
486
+ defaultValue: []
487
+ },
488
+ title: {
489
+ name: ItemDeclaration.title
490
+ }
491
+ },
492
+ superTypes: [GroupContent.$type, ParallelContent.$type, SwimlaneContent.$type]
493
+ },
494
+ LabelDeclaration: {
495
+ name: LabelDeclaration.$type,
496
+ properties: {
497
+ description: {
498
+ name: LabelDeclaration.description
499
+ },
500
+ name: {
501
+ name: LabelDeclaration.name
502
+ },
503
+ properties: {
504
+ name: LabelDeclaration.properties,
505
+ defaultValue: []
506
+ },
507
+ title: {
508
+ name: LabelDeclaration.title
509
+ }
510
+ },
511
+ superTypes: [RoadmapEntry.$type]
512
+ },
513
+ MilestoneDeclaration: {
514
+ name: MilestoneDeclaration.$type,
515
+ properties: {
516
+ description: {
517
+ name: MilestoneDeclaration.description
518
+ },
519
+ name: {
520
+ name: MilestoneDeclaration.name
521
+ },
522
+ properties: {
523
+ name: MilestoneDeclaration.properties,
524
+ defaultValue: []
525
+ },
526
+ title: {
527
+ name: MilestoneDeclaration.title
528
+ }
529
+ },
530
+ superTypes: [RoadmapEntry.$type]
531
+ },
532
+ NowlineDirective: {
533
+ name: NowlineDirective.$type,
534
+ properties: {
535
+ properties: {
536
+ name: NowlineDirective.properties,
537
+ defaultValue: []
538
+ },
539
+ version: {
540
+ name: NowlineDirective.version
541
+ }
542
+ },
543
+ superTypes: []
544
+ },
545
+ NowlineFile: {
546
+ name: NowlineFile.$type,
547
+ properties: {
548
+ configEntries: {
549
+ name: NowlineFile.configEntries,
550
+ defaultValue: []
551
+ },
552
+ directive: {
553
+ name: NowlineFile.directive
554
+ },
555
+ hasConfig: {
556
+ name: NowlineFile.hasConfig,
557
+ defaultValue: false
558
+ },
559
+ includes: {
560
+ name: NowlineFile.includes,
561
+ defaultValue: []
562
+ },
563
+ roadmapDecl: {
564
+ name: NowlineFile.roadmapDecl
565
+ },
566
+ roadmapEntries: {
567
+ name: NowlineFile.roadmapEntries,
568
+ defaultValue: []
569
+ }
570
+ },
571
+ superTypes: []
572
+ },
573
+ ParallelBlock: {
574
+ name: ParallelBlock.$type,
575
+ properties: {
576
+ content: {
577
+ name: ParallelBlock.content,
578
+ defaultValue: []
579
+ },
580
+ name: {
581
+ name: ParallelBlock.name
582
+ },
583
+ properties: {
584
+ name: ParallelBlock.properties,
585
+ defaultValue: []
586
+ },
587
+ title: {
588
+ name: ParallelBlock.title
589
+ }
590
+ },
591
+ superTypes: [GroupContent.$type, SwimlaneContent.$type]
592
+ },
593
+ ParallelContent: {
594
+ name: ParallelContent.$type,
595
+ properties: {},
596
+ superTypes: []
597
+ },
598
+ PersonDeclaration: {
599
+ name: PersonDeclaration.$type,
600
+ properties: {
601
+ description: {
602
+ name: PersonDeclaration.description
603
+ },
604
+ name: {
605
+ name: PersonDeclaration.name
606
+ },
607
+ properties: {
608
+ name: PersonDeclaration.properties,
609
+ defaultValue: []
610
+ },
611
+ title: {
612
+ name: PersonDeclaration.title
613
+ }
614
+ },
615
+ superTypes: [RoadmapEntry.$type]
616
+ },
617
+ PersonMemberRef: {
618
+ name: PersonMemberRef.$type,
619
+ properties: {
620
+ ref: {
621
+ name: PersonMemberRef.ref
622
+ }
623
+ },
624
+ superTypes: [TeamContent.$type]
625
+ },
626
+ RoadmapDeclaration: {
627
+ name: RoadmapDeclaration.$type,
628
+ properties: {
629
+ name: {
630
+ name: RoadmapDeclaration.name
631
+ },
632
+ properties: {
633
+ name: RoadmapDeclaration.properties,
634
+ defaultValue: []
635
+ },
636
+ title: {
637
+ name: RoadmapDeclaration.title
638
+ }
639
+ },
640
+ superTypes: []
641
+ },
642
+ RoadmapEntry: {
643
+ name: RoadmapEntry.$type,
644
+ properties: {},
645
+ superTypes: []
646
+ },
647
+ ScaleBlock: {
648
+ name: ScaleBlock.$type,
649
+ properties: {
650
+ properties: {
651
+ name: ScaleBlock.properties,
652
+ defaultValue: []
653
+ }
654
+ },
655
+ superTypes: [ConfigEntry.$type]
656
+ },
657
+ SizeDeclaration: {
658
+ name: SizeDeclaration.$type,
659
+ properties: {
660
+ description: {
661
+ name: SizeDeclaration.description
662
+ },
663
+ name: {
664
+ name: SizeDeclaration.name
665
+ },
666
+ properties: {
667
+ name: SizeDeclaration.properties,
668
+ defaultValue: []
669
+ },
670
+ title: {
671
+ name: SizeDeclaration.title
672
+ }
673
+ },
674
+ superTypes: [RoadmapEntry.$type]
675
+ },
676
+ StatusDeclaration: {
677
+ name: StatusDeclaration.$type,
678
+ properties: {
679
+ description: {
680
+ name: StatusDeclaration.description
681
+ },
682
+ name: {
683
+ name: StatusDeclaration.name
684
+ },
685
+ properties: {
686
+ name: StatusDeclaration.properties,
687
+ defaultValue: []
688
+ },
689
+ title: {
690
+ name: StatusDeclaration.title
691
+ }
692
+ },
693
+ superTypes: [RoadmapEntry.$type]
694
+ },
695
+ StyleDeclaration: {
696
+ name: StyleDeclaration.$type,
697
+ properties: {
698
+ name: {
699
+ name: StyleDeclaration.name
700
+ },
701
+ properties: {
702
+ name: StyleDeclaration.properties,
703
+ defaultValue: []
704
+ },
705
+ title: {
706
+ name: StyleDeclaration.title
707
+ }
708
+ },
709
+ superTypes: [ConfigEntry.$type]
710
+ },
711
+ StyleProperty: {
712
+ name: StyleProperty.$type,
713
+ properties: {
714
+ key: {
715
+ name: StyleProperty.key
716
+ },
717
+ value: {
718
+ name: StyleProperty.value
719
+ }
720
+ },
721
+ superTypes: []
722
+ },
723
+ SwimlaneContent: {
724
+ name: SwimlaneContent.$type,
725
+ properties: {},
726
+ superTypes: []
727
+ },
728
+ SwimlaneDeclaration: {
729
+ name: SwimlaneDeclaration.$type,
730
+ properties: {
731
+ content: {
732
+ name: SwimlaneDeclaration.content,
733
+ defaultValue: []
734
+ },
735
+ name: {
736
+ name: SwimlaneDeclaration.name
737
+ },
738
+ properties: {
739
+ name: SwimlaneDeclaration.properties,
740
+ defaultValue: []
741
+ },
742
+ title: {
743
+ name: SwimlaneDeclaration.title
744
+ }
745
+ },
746
+ superTypes: [RoadmapEntry.$type]
747
+ },
748
+ SymbolDeclaration: {
749
+ name: SymbolDeclaration.$type,
750
+ properties: {
751
+ description: {
752
+ name: SymbolDeclaration.description
753
+ },
754
+ name: {
755
+ name: SymbolDeclaration.name
756
+ },
757
+ properties: {
758
+ name: SymbolDeclaration.properties,
759
+ defaultValue: []
760
+ },
761
+ title: {
762
+ name: SymbolDeclaration.title
763
+ }
764
+ },
765
+ superTypes: [ConfigEntry.$type]
766
+ },
767
+ TeamContent: {
768
+ name: TeamContent.$type,
769
+ properties: {},
770
+ superTypes: []
771
+ },
772
+ TeamDeclaration: {
773
+ name: TeamDeclaration.$type,
774
+ properties: {
775
+ content: {
776
+ name: TeamDeclaration.content,
777
+ defaultValue: []
778
+ },
779
+ name: {
780
+ name: TeamDeclaration.name
781
+ },
782
+ properties: {
783
+ name: TeamDeclaration.properties,
784
+ defaultValue: []
785
+ },
786
+ title: {
787
+ name: TeamDeclaration.title
788
+ }
789
+ },
790
+ superTypes: [RoadmapEntry.$type, TeamContent.$type]
791
+ }
792
+ };
793
+ }
794
+ export const reflection = new NowlineAstReflection();
795
+ //# sourceMappingURL=ast.js.map