@likec4/language-server 1.2.0 → 1.2.2
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.
- package/package.json +8 -10
- package/src/Rpc.ts +108 -0
- package/src/ast.ts +443 -0
- package/src/browser/index.ts +30 -0
- package/src/elementRef.ts +26 -0
- package/src/generated/ast.ts +1632 -0
- package/src/generated/grammar.ts +10 -0
- package/src/generated/module.ts +32 -0
- package/src/index.ts +4 -0
- package/src/like-c4.langium +395 -0
- package/src/logger.ts +54 -0
- package/src/lsp/CodeLensProvider.ts +51 -0
- package/src/lsp/DocumentHighlightProvider.ts +12 -0
- package/src/lsp/DocumentLinkProvider.test.ts +66 -0
- package/src/lsp/DocumentLinkProvider.ts +53 -0
- package/src/lsp/DocumentSymbolProvider.ts +201 -0
- package/src/lsp/HoverProvider.ts +58 -0
- package/{dist/lsp/SemanticTokenProvider.js → src/lsp/SemanticTokenProvider.ts} +57 -42
- package/src/lsp/index.ts +6 -0
- package/src/model/fqn-computation.ts +47 -0
- package/src/model/fqn-index.ts +161 -0
- package/src/model/index.ts +5 -0
- package/src/model/model-builder.ts +447 -0
- package/src/model/model-locator.ts +130 -0
- package/src/model/model-parser.ts +580 -0
- package/src/model-change/ModelChanges.ts +120 -0
- package/src/model-change/changeElementStyle.ts +176 -0
- package/src/model-change/changeViewLayout.ts +41 -0
- package/src/module.ts +197 -0
- package/src/node/index.ts +20 -0
- package/src/protocol.ts +87 -0
- package/src/references/index.ts +2 -0
- package/src/references/scope-computation.ts +142 -0
- package/src/references/scope-provider.ts +166 -0
- package/src/shared/NodeKindProvider.ts +67 -0
- package/src/shared/WorkspaceManager.ts +39 -0
- package/src/shared/WorkspaceSymbolProvider.ts +3 -0
- package/src/shared/index.ts +3 -0
- package/src/test/index.ts +1 -0
- package/src/test/testServices.ts +119 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/printDocs.ts +3 -0
- package/src/utils/stringHash.ts +6 -0
- package/{dist/validation/dynamic-view-rule.js → src/validation/dynamic-view-rule.ts} +14 -11
- package/src/validation/dynamic-view-step.ts +39 -0
- package/src/validation/element.ts +52 -0
- package/{dist/validation/index.js → src/validation/index.ts} +22 -18
- package/src/validation/property-checks.ts +17 -0
- package/src/validation/relation.ts +57 -0
- package/src/validation/specification.ts +118 -0
- package/src/validation/view-predicates/custom-element-expr.ts +21 -0
- package/{dist/validation/view-predicates/expanded-element.js → src/validation/view-predicates/expanded-element.ts} +18 -13
- package/src/validation/view-predicates/incoming.ts +19 -0
- package/src/validation/view-predicates/index.ts +4 -0
- package/src/validation/view-predicates/outgoing.ts +19 -0
- package/src/validation/view.ts +26 -0
- package/src/view-utils/assignNavigateTo.ts +30 -0
- package/src/view-utils/index.ts +3 -0
- package/src/view-utils/resolve-extended-views.ts +57 -0
- package/src/view-utils/resolve-relative-paths.ts +84 -0
- package/dist/Rpc.d.ts +0 -10
- package/dist/Rpc.js +0 -98
- package/dist/ast.d.ts +0 -149
- package/dist/ast.js +0 -271
- package/dist/browser/index.d.ts +0 -9
- package/dist/browser/index.js +0 -16
- package/dist/elementRef.d.ts +0 -12
- package/dist/elementRef.js +0 -15
- package/dist/generated/ast.d.ts +0 -615
- package/dist/generated/ast.js +0 -957
- package/dist/generated/grammar.d.ts +0 -7
- package/dist/generated/grammar.js +0 -3
- package/dist/generated/module.d.ts +0 -14
- package/dist/generated/module.js +0 -22
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -2
- package/dist/logger.d.ts +0 -12
- package/dist/logger.js +0 -51
- package/dist/lsp/CodeLensProvider.d.ts +0 -10
- package/dist/lsp/CodeLensProvider.js +0 -40
- package/dist/lsp/DocumentHighlightProvider.d.ts +0 -10
- package/dist/lsp/DocumentHighlightProvider.js +0 -10
- package/dist/lsp/DocumentLinkProvider.d.ts +0 -11
- package/dist/lsp/DocumentLinkProvider.js +0 -41
- package/dist/lsp/DocumentLinkProvider.test.d.ts +0 -2
- package/dist/lsp/DocumentLinkProvider.test.js +0 -54
- package/dist/lsp/DocumentSymbolProvider.d.ts +0 -22
- package/dist/lsp/DocumentSymbolProvider.js +0 -189
- package/dist/lsp/HoverProvider.d.ts +0 -10
- package/dist/lsp/HoverProvider.js +0 -36
- package/dist/lsp/SemanticTokenProvider.d.ts +0 -8
- package/dist/lsp/index.d.ts +0 -7
- package/dist/lsp/index.js +0 -6
- package/dist/model/fqn-computation.d.ts +0 -4
- package/dist/model/fqn-computation.js +0 -43
- package/dist/model/fqn-index.d.ts +0 -26
- package/dist/model/fqn-index.js +0 -114
- package/dist/model/index.d.ts +0 -6
- package/dist/model/index.js +0 -5
- package/dist/model/model-builder.d.ts +0 -20
- package/dist/model/model-builder.js +0 -365
- package/dist/model/model-locator.d.ts +0 -22
- package/dist/model/model-locator.js +0 -115
- package/dist/model/model-parser.d.ts +0 -29
- package/dist/model/model-parser.js +0 -520
- package/dist/model-change/ModelChanges.d.ts +0 -16
- package/dist/model-change/ModelChanges.js +0 -106
- package/dist/model-change/changeElementStyle.d.ts +0 -18
- package/dist/model-change/changeElementStyle.js +0 -141
- package/dist/model-change/changeViewLayout.d.ts +0 -13
- package/dist/model-change/changeViewLayout.js +0 -29
- package/dist/module.d.ts +0 -59
- package/dist/module.js +0 -121
- package/dist/node/index.d.ts +0 -6
- package/dist/node/index.js +0 -13
- package/dist/protocol.d.ts +0 -58
- package/dist/protocol.js +0 -14
- package/dist/references/index.d.ts +0 -3
- package/dist/references/index.js +0 -2
- package/dist/references/scope-computation.d.ts +0 -11
- package/dist/references/scope-computation.js +0 -111
- package/dist/references/scope-provider.d.ts +0 -18
- package/dist/references/scope-provider.js +0 -136
- package/dist/shared/NodeKindProvider.d.ts +0 -16
- package/dist/shared/NodeKindProvider.js +0 -60
- package/dist/shared/WorkspaceManager.d.ts +0 -17
- package/dist/shared/WorkspaceManager.js +0 -29
- package/dist/shared/WorkspaceSymbolProvider.d.ts +0 -4
- package/dist/shared/WorkspaceSymbolProvider.js +0 -3
- package/dist/shared/index.d.ts +0 -4
- package/dist/shared/index.js +0 -3
- package/dist/test/index.d.ts +0 -2
- package/dist/test/index.js +0 -1
- package/dist/test/testServices.d.ts +0 -23
- package/dist/test/testServices.js +0 -102
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/index.js +0 -1
- package/dist/utils/printDocs.d.ts +0 -3
- package/dist/utils/printDocs.js +0 -1
- package/dist/utils/stringHash.d.ts +0 -2
- package/dist/utils/stringHash.js +0 -5
- package/dist/validation/dynamic-view-rule.d.ts +0 -5
- package/dist/validation/dynamic-view-step.d.ts +0 -5
- package/dist/validation/dynamic-view-step.js +0 -33
- package/dist/validation/element.d.ts +0 -6
- package/dist/validation/element.js +0 -38
- package/dist/validation/index.d.ts +0 -3
- package/dist/validation/property-checks.d.ts +0 -5
- package/dist/validation/property-checks.js +0 -11
- package/dist/validation/relation.d.ts +0 -5
- package/dist/validation/relation.js +0 -50
- package/dist/validation/specification.d.ts +0 -10
- package/dist/validation/specification.js +0 -97
- package/dist/validation/view-predicates/custom-element-expr.d.ts +0 -5
- package/dist/validation/view-predicates/custom-element-expr.js +0 -16
- package/dist/validation/view-predicates/expanded-element.d.ts +0 -5
- package/dist/validation/view-predicates/incoming.d.ts +0 -5
- package/dist/validation/view-predicates/incoming.js +0 -14
- package/dist/validation/view-predicates/index.d.ts +0 -5
- package/dist/validation/view-predicates/index.js +0 -4
- package/dist/validation/view-predicates/outgoing.d.ts +0 -5
- package/dist/validation/view-predicates/outgoing.js +0 -14
- package/dist/validation/view.d.ts +0 -5
- package/dist/validation/view.js +0 -16
- package/dist/view-utils/assignNavigateTo.d.ts +0 -3
- package/dist/view-utils/assignNavigateTo.js +0 -24
- package/dist/view-utils/index.d.ts +0 -4
- package/dist/view-utils/index.js +0 -3
- package/dist/view-utils/resolve-extended-views.d.ts +0 -7
- package/dist/view-utils/resolve-extended-views.js +0 -41
- package/dist/view-utils/resolve-relative-paths.d.ts +0 -3
- package/dist/view-utils/resolve-relative-paths.js +0 -75
- /package/{dist → src}/reset.d.ts +0 -0
package/dist/generated/ast.d.ts
DELETED
|
@@ -1,615 +0,0 @@
|
|
|
1
|
-
/******************************************************************************
|
|
2
|
-
* This file was generated by langium-cli 3.0.3.
|
|
3
|
-
* DO NOT EDIT MANUALLY!
|
|
4
|
-
******************************************************************************/
|
|
5
|
-
import type { AstNode, Reference, ReferenceInfo, TypeMetaData } from 'langium';
|
|
6
|
-
import { AbstractAstReflection } from 'langium';
|
|
7
|
-
export declare const LikeC4Terminals: {
|
|
8
|
-
BLOCK_COMMENT: RegExp;
|
|
9
|
-
LINE_COMMENT: RegExp;
|
|
10
|
-
WS: RegExp;
|
|
11
|
-
URI_WITH_SCHEMA: RegExp;
|
|
12
|
-
URI_RELATIVE: RegExp;
|
|
13
|
-
DotUnderscore: RegExp;
|
|
14
|
-
DotWildcard: RegExp;
|
|
15
|
-
TagHash: RegExp;
|
|
16
|
-
Dot: RegExp;
|
|
17
|
-
NotEqual: RegExp;
|
|
18
|
-
Eq: RegExp;
|
|
19
|
-
Colon: RegExp;
|
|
20
|
-
SemiColon: RegExp;
|
|
21
|
-
Comma: RegExp;
|
|
22
|
-
Percent: RegExp;
|
|
23
|
-
String: RegExp;
|
|
24
|
-
IdTerminal: RegExp;
|
|
25
|
-
};
|
|
26
|
-
export type ArrowType = 'crow' | 'diamond' | 'none' | 'normal' | 'odiamond' | 'onormal' | 'open' | 'vee';
|
|
27
|
-
export declare function isArrowType(item: unknown): item is ArrowType;
|
|
28
|
-
export type BorderStyleValue = 'none' | LineOptions;
|
|
29
|
-
export declare function isBorderStyleValue(item: unknown): item is BorderStyleValue;
|
|
30
|
-
export type DynamicViewRule = DynamicViewRulePredicate | ViewRuleAutoLayout | ViewRuleStyle;
|
|
31
|
-
export declare const DynamicViewRule = "DynamicViewRule";
|
|
32
|
-
export declare function isDynamicViewRule(item: unknown): item is DynamicViewRule;
|
|
33
|
-
export type ElementExpr = DescedantsExpr | ElementKindExpr | ElementRef | ElementTagExpr | ExpandElementExpr | WildcardExpr;
|
|
34
|
-
export declare const ElementExpr = "ElementExpr";
|
|
35
|
-
export declare function isElementExpr(item: unknown): item is ElementExpr;
|
|
36
|
-
export type ElementProperty = ElementStringProperty | LinkProperty | StyleProperties;
|
|
37
|
-
export declare const ElementProperty = "ElementProperty";
|
|
38
|
-
export declare function isElementProperty(item: unknown): item is ElementProperty;
|
|
39
|
-
export type ElementShape = 'browser' | 'cylinder' | 'mobile' | 'person' | 'queue' | 'rectangle' | 'storage';
|
|
40
|
-
export declare function isElementShape(item: unknown): item is ElementShape;
|
|
41
|
-
export type Id = 'element' | 'model' | ArrowType | ElementShape | LineOptions | ThemeColor | string;
|
|
42
|
-
export declare function isId(item: unknown): item is Id;
|
|
43
|
-
export type LikeC4View = DynamicView | ElementView;
|
|
44
|
-
export declare const LikeC4View = "LikeC4View";
|
|
45
|
-
export declare function isLikeC4View(item: unknown): item is LikeC4View;
|
|
46
|
-
export type LineOptions = 'dashed' | 'dotted' | 'solid';
|
|
47
|
-
export declare function isLineOptions(item: unknown): item is LineOptions;
|
|
48
|
-
export type Relation = ExplicitRelation | ImplicitRelation;
|
|
49
|
-
export declare const Relation = "Relation";
|
|
50
|
-
export declare function isRelation(item: unknown): item is Relation;
|
|
51
|
-
export type RelationProperty = LinkProperty | RelationStringProperty | RelationStyleProperty;
|
|
52
|
-
export declare const RelationProperty = "RelationProperty";
|
|
53
|
-
export declare function isRelationProperty(item: unknown): item is RelationProperty;
|
|
54
|
-
export type RelationshipStyleProperty = ArrowProperty | ColorProperty | LineProperty;
|
|
55
|
-
export declare const RelationshipStyleProperty = "RelationshipStyleProperty";
|
|
56
|
-
export declare function isRelationshipStyleProperty(item: unknown): item is RelationshipStyleProperty;
|
|
57
|
-
export type StyleProperty = BorderProperty | ColorProperty | IconProperty | OpacityProperty | ShapeProperty;
|
|
58
|
-
export declare const StyleProperty = "StyleProperty";
|
|
59
|
-
export declare function isStyleProperty(item: unknown): item is StyleProperty;
|
|
60
|
-
export type TagId = string;
|
|
61
|
-
export declare function isTagId(item: unknown): item is TagId;
|
|
62
|
-
export type ThemeColor = 'amber' | 'blue' | 'gray' | 'green' | 'indigo' | 'muted' | 'primary' | 'red' | 'secondary' | 'sky' | 'slate';
|
|
63
|
-
export declare function isThemeColor(item: unknown): item is ThemeColor;
|
|
64
|
-
export type Uri = string;
|
|
65
|
-
export declare function isUri(item: unknown): item is Uri;
|
|
66
|
-
export type ViewLayoutDirection = 'BottomTop' | 'LeftRight' | 'RightLeft' | 'TopBottom';
|
|
67
|
-
export declare function isViewLayoutDirection(item: unknown): item is ViewLayoutDirection;
|
|
68
|
-
export type ViewProperty = LinkProperty | ViewStringProperty;
|
|
69
|
-
export declare const ViewProperty = "ViewProperty";
|
|
70
|
-
export declare function isViewProperty(item: unknown): item is ViewProperty;
|
|
71
|
-
export type ViewRule = ViewRuleAutoLayout | ViewRulePredicate | ViewRuleStyle;
|
|
72
|
-
export declare const ViewRule = "ViewRule";
|
|
73
|
-
export declare function isViewRule(item: unknown): item is ViewRule;
|
|
74
|
-
export type ViewRulePredicate = ExcludePredicate | IncludePredicate;
|
|
75
|
-
export declare const ViewRulePredicate = "ViewRulePredicate";
|
|
76
|
-
export declare function isViewRulePredicate(item: unknown): item is ViewRulePredicate;
|
|
77
|
-
export type ViewRulePredicateExpr = CustomElementExpr | ElementExpr | InOutExpr | IncomingExpr | OutgoingExpr | RelationExpr;
|
|
78
|
-
export declare const ViewRulePredicateExpr = "ViewRulePredicateExpr";
|
|
79
|
-
export declare function isViewRulePredicateExpr(item: unknown): item is ViewRulePredicateExpr;
|
|
80
|
-
export interface ArrowProperty extends AstNode {
|
|
81
|
-
readonly $container: RelationStyleProperty | SpecificationRelationshipKind;
|
|
82
|
-
readonly $type: 'ArrowProperty';
|
|
83
|
-
key: 'head' | 'tail';
|
|
84
|
-
value: ArrowType;
|
|
85
|
-
}
|
|
86
|
-
export declare const ArrowProperty = "ArrowProperty";
|
|
87
|
-
export declare function isArrowProperty(item: unknown): item is ArrowProperty;
|
|
88
|
-
export interface BorderProperty extends AstNode {
|
|
89
|
-
readonly $container: CustomElementExprBody | StyleProperties | ViewRuleStyle;
|
|
90
|
-
readonly $type: 'BorderProperty';
|
|
91
|
-
key: 'border';
|
|
92
|
-
value: BorderStyleValue;
|
|
93
|
-
}
|
|
94
|
-
export declare const BorderProperty = "BorderProperty";
|
|
95
|
-
export declare function isBorderProperty(item: unknown): item is BorderProperty;
|
|
96
|
-
export interface ColorProperty extends AstNode {
|
|
97
|
-
readonly $container: CustomElementExprBody | RelationStyleProperty | SpecificationRelationshipKind | StyleProperties | ViewRuleStyle;
|
|
98
|
-
readonly $type: 'ColorProperty';
|
|
99
|
-
key: 'color';
|
|
100
|
-
value: ThemeColor;
|
|
101
|
-
}
|
|
102
|
-
export declare const ColorProperty = "ColorProperty";
|
|
103
|
-
export declare function isColorProperty(item: unknown): item is ColorProperty;
|
|
104
|
-
export interface CustomElementExpr extends AstNode {
|
|
105
|
-
readonly $container: DynamicViewRulePredicate | ExcludePredicate | IncludePredicate;
|
|
106
|
-
readonly $type: 'CustomElementExpr';
|
|
107
|
-
body: CustomElementExprBody;
|
|
108
|
-
target: ElementExpr;
|
|
109
|
-
}
|
|
110
|
-
export declare const CustomElementExpr = "CustomElementExpr";
|
|
111
|
-
export declare function isCustomElementExpr(item: unknown): item is CustomElementExpr;
|
|
112
|
-
export interface CustomElementExprBody extends AstNode {
|
|
113
|
-
readonly $container: CustomElementExpr;
|
|
114
|
-
readonly $type: 'CustomElementExprBody';
|
|
115
|
-
props: Array<ElementStringProperty | NavigateToProperty | StyleProperty>;
|
|
116
|
-
}
|
|
117
|
-
export declare const CustomElementExprBody = "CustomElementExprBody";
|
|
118
|
-
export declare function isCustomElementExprBody(item: unknown): item is CustomElementExprBody;
|
|
119
|
-
export interface DescedantsExpr extends AstNode {
|
|
120
|
-
readonly $container: CustomElementExpr | DynamicViewRulePredicate | ExcludePredicate | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
121
|
-
readonly $type: 'DescedantsExpr';
|
|
122
|
-
parent: ElementRef;
|
|
123
|
-
}
|
|
124
|
-
export declare const DescedantsExpr = "DescedantsExpr";
|
|
125
|
-
export declare function isDescedantsExpr(item: unknown): item is DescedantsExpr;
|
|
126
|
-
export interface DynamicView extends AstNode {
|
|
127
|
-
readonly $container: ModelViews;
|
|
128
|
-
readonly $type: 'DynamicView';
|
|
129
|
-
body: DynamicViewBody;
|
|
130
|
-
name: Id;
|
|
131
|
-
}
|
|
132
|
-
export declare const DynamicView = "DynamicView";
|
|
133
|
-
export declare function isDynamicView(item: unknown): item is DynamicView;
|
|
134
|
-
export interface DynamicViewBody extends AstNode {
|
|
135
|
-
readonly $container: DynamicView;
|
|
136
|
-
readonly $type: 'DynamicViewBody';
|
|
137
|
-
props: Array<ViewProperty>;
|
|
138
|
-
rules: Array<DynamicViewRule>;
|
|
139
|
-
steps: Array<DynamicViewStep>;
|
|
140
|
-
tags?: Tags;
|
|
141
|
-
}
|
|
142
|
-
export declare const DynamicViewBody = "DynamicViewBody";
|
|
143
|
-
export declare function isDynamicViewBody(item: unknown): item is DynamicViewBody;
|
|
144
|
-
export interface DynamicViewRulePredicate extends AstNode {
|
|
145
|
-
readonly $container: DynamicViewBody;
|
|
146
|
-
readonly $type: 'DynamicViewRulePredicate';
|
|
147
|
-
expressions: Array<ViewRulePredicateExpr>;
|
|
148
|
-
}
|
|
149
|
-
export declare const DynamicViewRulePredicate = "DynamicViewRulePredicate";
|
|
150
|
-
export declare function isDynamicViewRulePredicate(item: unknown): item is DynamicViewRulePredicate;
|
|
151
|
-
export interface DynamicViewStep extends AstNode {
|
|
152
|
-
readonly $container: DynamicViewBody;
|
|
153
|
-
readonly $type: 'DynamicViewStep';
|
|
154
|
-
isBackward: boolean;
|
|
155
|
-
kind?: Reference<RelationshipKind>;
|
|
156
|
-
source: ElementRef;
|
|
157
|
-
target: ElementRef;
|
|
158
|
-
title?: string;
|
|
159
|
-
}
|
|
160
|
-
export declare const DynamicViewStep = "DynamicViewStep";
|
|
161
|
-
export declare function isDynamicViewStep(item: unknown): item is DynamicViewStep;
|
|
162
|
-
export interface Element extends AstNode {
|
|
163
|
-
readonly $container: ElementBody | ExtendElementBody | Model;
|
|
164
|
-
readonly $type: 'Element';
|
|
165
|
-
body?: ElementBody;
|
|
166
|
-
kind: Reference<ElementKind>;
|
|
167
|
-
name: Id;
|
|
168
|
-
props: Array<string>;
|
|
169
|
-
}
|
|
170
|
-
export declare const Element = "Element";
|
|
171
|
-
export declare function isElement(item: unknown): item is Element;
|
|
172
|
-
export interface ElementBody extends AstNode {
|
|
173
|
-
readonly $container: Element;
|
|
174
|
-
readonly $type: 'ElementBody';
|
|
175
|
-
elements: Array<Element | Relation>;
|
|
176
|
-
props: Array<ElementProperty>;
|
|
177
|
-
tags?: Tags;
|
|
178
|
-
}
|
|
179
|
-
export declare const ElementBody = "ElementBody";
|
|
180
|
-
export declare function isElementBody(item: unknown): item is ElementBody;
|
|
181
|
-
export interface ElementKind extends AstNode {
|
|
182
|
-
readonly $container: SpecificationElementKind;
|
|
183
|
-
readonly $type: 'ElementKind';
|
|
184
|
-
name: Id;
|
|
185
|
-
}
|
|
186
|
-
export declare const ElementKind = "ElementKind";
|
|
187
|
-
export declare function isElementKind(item: unknown): item is ElementKind;
|
|
188
|
-
export interface ElementKindExpr extends AstNode {
|
|
189
|
-
readonly $container: CustomElementExpr | DynamicViewRulePredicate | ExcludePredicate | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
190
|
-
readonly $type: 'ElementKindExpr';
|
|
191
|
-
isEqual: boolean;
|
|
192
|
-
kind: Reference<ElementKind>;
|
|
193
|
-
}
|
|
194
|
-
export declare const ElementKindExpr = "ElementKindExpr";
|
|
195
|
-
export declare function isElementKindExpr(item: unknown): item is ElementKindExpr;
|
|
196
|
-
export interface ElementRef extends AstNode {
|
|
197
|
-
readonly $container: CustomElementExpr | DescedantsExpr | DynamicViewRulePredicate | DynamicViewStep | ElementRef | ElementView | ExcludePredicate | ExpandElementExpr | ExplicitRelation | ImplicitRelation | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
198
|
-
readonly $type: 'ElementRef';
|
|
199
|
-
el: Reference<Element>;
|
|
200
|
-
parent?: ElementRef;
|
|
201
|
-
}
|
|
202
|
-
export declare const ElementRef = "ElementRef";
|
|
203
|
-
export declare function isElementRef(item: unknown): item is ElementRef;
|
|
204
|
-
export interface ElementStringProperty extends AstNode {
|
|
205
|
-
readonly $container: CustomElementExprBody | ElementBody;
|
|
206
|
-
readonly $type: 'ElementStringProperty';
|
|
207
|
-
key: 'description' | 'technology' | 'title';
|
|
208
|
-
value: string;
|
|
209
|
-
}
|
|
210
|
-
export declare const ElementStringProperty = "ElementStringProperty";
|
|
211
|
-
export declare function isElementStringProperty(item: unknown): item is ElementStringProperty;
|
|
212
|
-
export interface ElementTagExpr extends AstNode {
|
|
213
|
-
readonly $container: CustomElementExpr | DynamicViewRulePredicate | ExcludePredicate | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
214
|
-
readonly $type: 'ElementTagExpr';
|
|
215
|
-
isEqual: boolean;
|
|
216
|
-
tag: Reference<Tag>;
|
|
217
|
-
}
|
|
218
|
-
export declare const ElementTagExpr = "ElementTagExpr";
|
|
219
|
-
export declare function isElementTagExpr(item: unknown): item is ElementTagExpr;
|
|
220
|
-
export interface ElementView extends AstNode {
|
|
221
|
-
readonly $container: ModelViews;
|
|
222
|
-
readonly $type: 'ElementView';
|
|
223
|
-
body: ElementViewBody;
|
|
224
|
-
extends?: ElementViewRef;
|
|
225
|
-
name?: Id;
|
|
226
|
-
viewOf?: ElementRef;
|
|
227
|
-
}
|
|
228
|
-
export declare const ElementView = "ElementView";
|
|
229
|
-
export declare function isElementView(item: unknown): item is ElementView;
|
|
230
|
-
export interface ElementViewBody extends AstNode {
|
|
231
|
-
readonly $container: ElementView;
|
|
232
|
-
readonly $type: 'ElementViewBody';
|
|
233
|
-
props: Array<ViewProperty>;
|
|
234
|
-
rules: Array<ViewRule>;
|
|
235
|
-
tags?: Tags;
|
|
236
|
-
}
|
|
237
|
-
export declare const ElementViewBody = "ElementViewBody";
|
|
238
|
-
export declare function isElementViewBody(item: unknown): item is ElementViewBody;
|
|
239
|
-
export interface ElementViewRef extends AstNode {
|
|
240
|
-
readonly $container: ElementView;
|
|
241
|
-
readonly $type: 'ElementViewRef';
|
|
242
|
-
view: Reference<ElementView>;
|
|
243
|
-
}
|
|
244
|
-
export declare const ElementViewRef = "ElementViewRef";
|
|
245
|
-
export declare function isElementViewRef(item: unknown): item is ElementViewRef;
|
|
246
|
-
export interface ExcludePredicate extends AstNode {
|
|
247
|
-
readonly $container: ElementViewBody;
|
|
248
|
-
readonly $type: 'ExcludePredicate';
|
|
249
|
-
expressions: Array<ViewRulePredicateExpr>;
|
|
250
|
-
}
|
|
251
|
-
export declare const ExcludePredicate = "ExcludePredicate";
|
|
252
|
-
export declare function isExcludePredicate(item: unknown): item is ExcludePredicate;
|
|
253
|
-
export interface ExpandElementExpr extends AstNode {
|
|
254
|
-
readonly $container: CustomElementExpr | DynamicViewRulePredicate | ExcludePredicate | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
255
|
-
readonly $type: 'ExpandElementExpr';
|
|
256
|
-
parent: ElementRef;
|
|
257
|
-
}
|
|
258
|
-
export declare const ExpandElementExpr = "ExpandElementExpr";
|
|
259
|
-
export declare function isExpandElementExpr(item: unknown): item is ExpandElementExpr;
|
|
260
|
-
export interface ExplicitRelation extends AstNode {
|
|
261
|
-
readonly $container: ElementBody | ExtendElementBody | Model;
|
|
262
|
-
readonly $type: 'ExplicitRelation';
|
|
263
|
-
body?: RelationBody;
|
|
264
|
-
kind?: Reference<RelationshipKind>;
|
|
265
|
-
source: ElementRef;
|
|
266
|
-
tags?: Tags;
|
|
267
|
-
target: ElementRef;
|
|
268
|
-
title?: string;
|
|
269
|
-
}
|
|
270
|
-
export declare const ExplicitRelation = "ExplicitRelation";
|
|
271
|
-
export declare function isExplicitRelation(item: unknown): item is ExplicitRelation;
|
|
272
|
-
export interface ExtendElement extends AstNode {
|
|
273
|
-
readonly $container: Model;
|
|
274
|
-
readonly $type: 'ExtendElement';
|
|
275
|
-
body: ExtendElementBody;
|
|
276
|
-
element: FqnElementRef;
|
|
277
|
-
}
|
|
278
|
-
export declare const ExtendElement = "ExtendElement";
|
|
279
|
-
export declare function isExtendElement(item: unknown): item is ExtendElement;
|
|
280
|
-
export interface ExtendElementBody extends AstNode {
|
|
281
|
-
readonly $container: ExtendElement;
|
|
282
|
-
readonly $type: 'ExtendElementBody';
|
|
283
|
-
elements: Array<Element | ExplicitRelation>;
|
|
284
|
-
}
|
|
285
|
-
export declare const ExtendElementBody = "ExtendElementBody";
|
|
286
|
-
export declare function isExtendElementBody(item: unknown): item is ExtendElementBody;
|
|
287
|
-
export interface FqnElementRef extends AstNode {
|
|
288
|
-
readonly $container: ExtendElement | FqnElementRef;
|
|
289
|
-
readonly $type: 'FqnElementRef';
|
|
290
|
-
el: Reference<Element>;
|
|
291
|
-
parent?: FqnElementRef;
|
|
292
|
-
}
|
|
293
|
-
export declare const FqnElementRef = "FqnElementRef";
|
|
294
|
-
export declare function isFqnElementRef(item: unknown): item is FqnElementRef;
|
|
295
|
-
export interface IconProperty extends AstNode {
|
|
296
|
-
readonly $container: CustomElementExprBody | StyleProperties | ViewRuleStyle;
|
|
297
|
-
readonly $type: 'IconProperty';
|
|
298
|
-
key: 'icon';
|
|
299
|
-
value: Uri;
|
|
300
|
-
}
|
|
301
|
-
export declare const IconProperty = "IconProperty";
|
|
302
|
-
export declare function isIconProperty(item: unknown): item is IconProperty;
|
|
303
|
-
export interface ImplicitRelation extends AstNode {
|
|
304
|
-
readonly $container: ElementBody;
|
|
305
|
-
readonly $type: 'ImplicitRelation';
|
|
306
|
-
body?: RelationBody;
|
|
307
|
-
kind?: Reference<RelationshipKind>;
|
|
308
|
-
tags?: Tags;
|
|
309
|
-
target: ElementRef;
|
|
310
|
-
title?: string;
|
|
311
|
-
}
|
|
312
|
-
export declare const ImplicitRelation = "ImplicitRelation";
|
|
313
|
-
export declare function isImplicitRelation(item: unknown): item is ImplicitRelation;
|
|
314
|
-
export interface IncludePredicate extends AstNode {
|
|
315
|
-
readonly $container: ElementViewBody;
|
|
316
|
-
readonly $type: 'IncludePredicate';
|
|
317
|
-
expressions: Array<ViewRulePredicateExpr>;
|
|
318
|
-
}
|
|
319
|
-
export declare const IncludePredicate = "IncludePredicate";
|
|
320
|
-
export declare function isIncludePredicate(item: unknown): item is IncludePredicate;
|
|
321
|
-
export interface IncomingExpr extends AstNode {
|
|
322
|
-
readonly $container: DynamicViewRulePredicate | ExcludePredicate | InOutExpr | IncludePredicate;
|
|
323
|
-
readonly $type: 'IncomingExpr';
|
|
324
|
-
to: ElementExpr;
|
|
325
|
-
}
|
|
326
|
-
export declare const IncomingExpr = "IncomingExpr";
|
|
327
|
-
export declare function isIncomingExpr(item: unknown): item is IncomingExpr;
|
|
328
|
-
export interface InOutExpr extends AstNode {
|
|
329
|
-
readonly $container: DynamicViewRulePredicate | ExcludePredicate | IncludePredicate;
|
|
330
|
-
readonly $type: 'InOutExpr';
|
|
331
|
-
inout: IncomingExpr;
|
|
332
|
-
}
|
|
333
|
-
export declare const InOutExpr = "InOutExpr";
|
|
334
|
-
export declare function isInOutExpr(item: unknown): item is InOutExpr;
|
|
335
|
-
export interface LikeC4Grammar extends AstNode {
|
|
336
|
-
readonly $type: 'LikeC4Grammar';
|
|
337
|
-
models: Array<Model>;
|
|
338
|
-
specifications: Array<SpecificationRule>;
|
|
339
|
-
views: Array<ModelViews>;
|
|
340
|
-
}
|
|
341
|
-
export declare const LikeC4Grammar = "LikeC4Grammar";
|
|
342
|
-
export declare function isLikeC4Grammar(item: unknown): item is LikeC4Grammar;
|
|
343
|
-
export interface LineProperty extends AstNode {
|
|
344
|
-
readonly $container: RelationStyleProperty | SpecificationRelationshipKind;
|
|
345
|
-
readonly $type: 'LineProperty';
|
|
346
|
-
key: 'line';
|
|
347
|
-
value: LineOptions;
|
|
348
|
-
}
|
|
349
|
-
export declare const LineProperty = "LineProperty";
|
|
350
|
-
export declare function isLineProperty(item: unknown): item is LineProperty;
|
|
351
|
-
export interface LinkProperty extends AstNode {
|
|
352
|
-
readonly $container: DynamicViewBody | ElementBody | ElementViewBody | RelationBody;
|
|
353
|
-
readonly $type: 'LinkProperty';
|
|
354
|
-
key: 'link';
|
|
355
|
-
value: Uri;
|
|
356
|
-
}
|
|
357
|
-
export declare const LinkProperty = "LinkProperty";
|
|
358
|
-
export declare function isLinkProperty(item: unknown): item is LinkProperty;
|
|
359
|
-
export interface Model extends AstNode {
|
|
360
|
-
readonly $container: LikeC4Grammar;
|
|
361
|
-
readonly $type: 'Model';
|
|
362
|
-
elements: Array<Element | ExplicitRelation | ExtendElement>;
|
|
363
|
-
name: 'model';
|
|
364
|
-
}
|
|
365
|
-
export declare const Model = "Model";
|
|
366
|
-
export declare function isModel(item: unknown): item is Model;
|
|
367
|
-
export interface ModelViews extends AstNode {
|
|
368
|
-
readonly $container: LikeC4Grammar;
|
|
369
|
-
readonly $type: 'ModelViews';
|
|
370
|
-
name: 'views';
|
|
371
|
-
views: Array<DynamicView | ElementView>;
|
|
372
|
-
}
|
|
373
|
-
export declare const ModelViews = "ModelViews";
|
|
374
|
-
export declare function isModelViews(item: unknown): item is ModelViews;
|
|
375
|
-
export interface NavigateToProperty extends AstNode {
|
|
376
|
-
readonly $container: CustomElementExprBody;
|
|
377
|
-
readonly $type: 'NavigateToProperty';
|
|
378
|
-
value: ViewRef;
|
|
379
|
-
}
|
|
380
|
-
export declare const NavigateToProperty = "NavigateToProperty";
|
|
381
|
-
export declare function isNavigateToProperty(item: unknown): item is NavigateToProperty;
|
|
382
|
-
export interface OpacityProperty extends AstNode {
|
|
383
|
-
readonly $container: CustomElementExprBody | StyleProperties | ViewRuleStyle;
|
|
384
|
-
readonly $type: 'OpacityProperty';
|
|
385
|
-
key: 'opacity';
|
|
386
|
-
value: string;
|
|
387
|
-
}
|
|
388
|
-
export declare const OpacityProperty = "OpacityProperty";
|
|
389
|
-
export declare function isOpacityProperty(item: unknown): item is OpacityProperty;
|
|
390
|
-
export interface OutgoingExpr extends AstNode {
|
|
391
|
-
readonly $container: DynamicViewRulePredicate | ExcludePredicate | IncludePredicate;
|
|
392
|
-
readonly $type: 'OutgoingExpr';
|
|
393
|
-
from: ElementExpr;
|
|
394
|
-
}
|
|
395
|
-
export declare const OutgoingExpr = "OutgoingExpr";
|
|
396
|
-
export declare function isOutgoingExpr(item: unknown): item is OutgoingExpr;
|
|
397
|
-
export interface RelationBody extends AstNode {
|
|
398
|
-
readonly $container: ExplicitRelation | ImplicitRelation;
|
|
399
|
-
readonly $type: 'RelationBody';
|
|
400
|
-
props: Array<RelationProperty>;
|
|
401
|
-
tags?: Tags;
|
|
402
|
-
}
|
|
403
|
-
export declare const RelationBody = "RelationBody";
|
|
404
|
-
export declare function isRelationBody(item: unknown): item is RelationBody;
|
|
405
|
-
export interface RelationExpr extends AstNode {
|
|
406
|
-
readonly $container: DynamicViewRulePredicate | ExcludePredicate | IncludePredicate;
|
|
407
|
-
readonly $type: 'RelationExpr';
|
|
408
|
-
isBidirectional: boolean;
|
|
409
|
-
source: ElementExpr;
|
|
410
|
-
target: ElementExpr;
|
|
411
|
-
}
|
|
412
|
-
export declare const RelationExpr = "RelationExpr";
|
|
413
|
-
export declare function isRelationExpr(item: unknown): item is RelationExpr;
|
|
414
|
-
export interface RelationshipKind extends AstNode {
|
|
415
|
-
readonly $container: SpecificationRelationshipKind;
|
|
416
|
-
readonly $type: 'RelationshipKind';
|
|
417
|
-
name: Id;
|
|
418
|
-
}
|
|
419
|
-
export declare const RelationshipKind = "RelationshipKind";
|
|
420
|
-
export declare function isRelationshipKind(item: unknown): item is RelationshipKind;
|
|
421
|
-
export interface RelationStringProperty extends AstNode {
|
|
422
|
-
readonly $container: RelationBody;
|
|
423
|
-
readonly $type: 'RelationStringProperty';
|
|
424
|
-
key: 'title';
|
|
425
|
-
value: string;
|
|
426
|
-
}
|
|
427
|
-
export declare const RelationStringProperty = "RelationStringProperty";
|
|
428
|
-
export declare function isRelationStringProperty(item: unknown): item is RelationStringProperty;
|
|
429
|
-
export interface RelationStyleProperty extends AstNode {
|
|
430
|
-
readonly $container: RelationBody;
|
|
431
|
-
readonly $type: 'RelationStyleProperty';
|
|
432
|
-
key: 'style';
|
|
433
|
-
props: Array<RelationshipStyleProperty>;
|
|
434
|
-
}
|
|
435
|
-
export declare const RelationStyleProperty = "RelationStyleProperty";
|
|
436
|
-
export declare function isRelationStyleProperty(item: unknown): item is RelationStyleProperty;
|
|
437
|
-
export interface ShapeProperty extends AstNode {
|
|
438
|
-
readonly $container: CustomElementExprBody | StyleProperties | ViewRuleStyle;
|
|
439
|
-
readonly $type: 'ShapeProperty';
|
|
440
|
-
key: 'shape';
|
|
441
|
-
value: ElementShape;
|
|
442
|
-
}
|
|
443
|
-
export declare const ShapeProperty = "ShapeProperty";
|
|
444
|
-
export declare function isShapeProperty(item: unknown): item is ShapeProperty;
|
|
445
|
-
export interface SpecificationElementKind extends AstNode {
|
|
446
|
-
readonly $container: SpecificationRule;
|
|
447
|
-
readonly $type: 'SpecificationElementKind';
|
|
448
|
-
kind: ElementKind;
|
|
449
|
-
style?: StyleProperties;
|
|
450
|
-
}
|
|
451
|
-
export declare const SpecificationElementKind = "SpecificationElementKind";
|
|
452
|
-
export declare function isSpecificationElementKind(item: unknown): item is SpecificationElementKind;
|
|
453
|
-
export interface SpecificationRelationshipKind extends AstNode {
|
|
454
|
-
readonly $container: SpecificationRule;
|
|
455
|
-
readonly $type: 'SpecificationRelationshipKind';
|
|
456
|
-
kind: RelationshipKind;
|
|
457
|
-
props: Array<RelationshipStyleProperty>;
|
|
458
|
-
}
|
|
459
|
-
export declare const SpecificationRelationshipKind = "SpecificationRelationshipKind";
|
|
460
|
-
export declare function isSpecificationRelationshipKind(item: unknown): item is SpecificationRelationshipKind;
|
|
461
|
-
export interface SpecificationRule extends AstNode {
|
|
462
|
-
readonly $container: LikeC4Grammar;
|
|
463
|
-
readonly $type: 'SpecificationRule';
|
|
464
|
-
elements: Array<SpecificationElementKind>;
|
|
465
|
-
name: 'specification';
|
|
466
|
-
relationships: Array<SpecificationRelationshipKind>;
|
|
467
|
-
tags: Array<SpecificationTag>;
|
|
468
|
-
}
|
|
469
|
-
export declare const SpecificationRule = "SpecificationRule";
|
|
470
|
-
export declare function isSpecificationRule(item: unknown): item is SpecificationRule;
|
|
471
|
-
export interface SpecificationTag extends AstNode {
|
|
472
|
-
readonly $container: SpecificationRule;
|
|
473
|
-
readonly $type: 'SpecificationTag';
|
|
474
|
-
tag: Tag;
|
|
475
|
-
}
|
|
476
|
-
export declare const SpecificationTag = "SpecificationTag";
|
|
477
|
-
export declare function isSpecificationTag(item: unknown): item is SpecificationTag;
|
|
478
|
-
export interface StyleProperties extends AstNode {
|
|
479
|
-
readonly $container: ElementBody | SpecificationElementKind;
|
|
480
|
-
readonly $type: 'StyleProperties';
|
|
481
|
-
key: 'style';
|
|
482
|
-
props: Array<StyleProperty>;
|
|
483
|
-
}
|
|
484
|
-
export declare const StyleProperties = "StyleProperties";
|
|
485
|
-
export declare function isStyleProperties(item: unknown): item is StyleProperties;
|
|
486
|
-
export interface Tag extends AstNode {
|
|
487
|
-
readonly $container: SpecificationTag;
|
|
488
|
-
readonly $type: 'Tag';
|
|
489
|
-
name: Id;
|
|
490
|
-
}
|
|
491
|
-
export declare const Tag = "Tag";
|
|
492
|
-
export declare function isTag(item: unknown): item is Tag;
|
|
493
|
-
export interface Tags extends AstNode {
|
|
494
|
-
readonly $container: DynamicViewBody | ElementBody | ElementViewBody | ExplicitRelation | ImplicitRelation | RelationBody;
|
|
495
|
-
readonly $type: 'Tags';
|
|
496
|
-
value: Array<Reference<Tag>>;
|
|
497
|
-
}
|
|
498
|
-
export declare const Tags = "Tags";
|
|
499
|
-
export declare function isTags(item: unknown): item is Tags;
|
|
500
|
-
export interface ViewRef extends AstNode {
|
|
501
|
-
readonly $container: NavigateToProperty;
|
|
502
|
-
readonly $type: 'ViewRef';
|
|
503
|
-
view: Reference<LikeC4View>;
|
|
504
|
-
}
|
|
505
|
-
export declare const ViewRef = "ViewRef";
|
|
506
|
-
export declare function isViewRef(item: unknown): item is ViewRef;
|
|
507
|
-
export interface ViewRuleAutoLayout extends AstNode {
|
|
508
|
-
readonly $container: DynamicViewBody | ElementViewBody;
|
|
509
|
-
readonly $type: 'ViewRuleAutoLayout';
|
|
510
|
-
direction: ViewLayoutDirection;
|
|
511
|
-
}
|
|
512
|
-
export declare const ViewRuleAutoLayout = "ViewRuleAutoLayout";
|
|
513
|
-
export declare function isViewRuleAutoLayout(item: unknown): item is ViewRuleAutoLayout;
|
|
514
|
-
export interface ViewRuleStyle extends AstNode {
|
|
515
|
-
readonly $container: DynamicViewBody | ElementViewBody;
|
|
516
|
-
readonly $type: 'ViewRuleStyle';
|
|
517
|
-
styleprops: Array<StyleProperty>;
|
|
518
|
-
targets: Array<ElementExpr>;
|
|
519
|
-
}
|
|
520
|
-
export declare const ViewRuleStyle = "ViewRuleStyle";
|
|
521
|
-
export declare function isViewRuleStyle(item: unknown): item is ViewRuleStyle;
|
|
522
|
-
export interface ViewStringProperty extends AstNode {
|
|
523
|
-
readonly $container: DynamicViewBody | ElementViewBody;
|
|
524
|
-
readonly $type: 'ViewStringProperty';
|
|
525
|
-
key: 'description' | 'title';
|
|
526
|
-
value: string;
|
|
527
|
-
}
|
|
528
|
-
export declare const ViewStringProperty = "ViewStringProperty";
|
|
529
|
-
export declare function isViewStringProperty(item: unknown): item is ViewStringProperty;
|
|
530
|
-
export interface WildcardExpr extends AstNode {
|
|
531
|
-
readonly $container: CustomElementExpr | DynamicViewRulePredicate | ExcludePredicate | IncludePredicate | IncomingExpr | OutgoingExpr | RelationExpr | ViewRuleStyle;
|
|
532
|
-
readonly $type: 'WildcardExpr';
|
|
533
|
-
isWildcard: boolean;
|
|
534
|
-
}
|
|
535
|
-
export declare const WildcardExpr = "WildcardExpr";
|
|
536
|
-
export declare function isWildcardExpr(item: unknown): item is WildcardExpr;
|
|
537
|
-
export type LikeC4AstType = {
|
|
538
|
-
ArrowProperty: ArrowProperty;
|
|
539
|
-
BorderProperty: BorderProperty;
|
|
540
|
-
ColorProperty: ColorProperty;
|
|
541
|
-
CustomElementExpr: CustomElementExpr;
|
|
542
|
-
CustomElementExprBody: CustomElementExprBody;
|
|
543
|
-
DescedantsExpr: DescedantsExpr;
|
|
544
|
-
DynamicView: DynamicView;
|
|
545
|
-
DynamicViewBody: DynamicViewBody;
|
|
546
|
-
DynamicViewRule: DynamicViewRule;
|
|
547
|
-
DynamicViewRulePredicate: DynamicViewRulePredicate;
|
|
548
|
-
DynamicViewStep: DynamicViewStep;
|
|
549
|
-
Element: Element;
|
|
550
|
-
ElementBody: ElementBody;
|
|
551
|
-
ElementExpr: ElementExpr;
|
|
552
|
-
ElementKind: ElementKind;
|
|
553
|
-
ElementKindExpr: ElementKindExpr;
|
|
554
|
-
ElementProperty: ElementProperty;
|
|
555
|
-
ElementRef: ElementRef;
|
|
556
|
-
ElementStringProperty: ElementStringProperty;
|
|
557
|
-
ElementTagExpr: ElementTagExpr;
|
|
558
|
-
ElementView: ElementView;
|
|
559
|
-
ElementViewBody: ElementViewBody;
|
|
560
|
-
ElementViewRef: ElementViewRef;
|
|
561
|
-
ExcludePredicate: ExcludePredicate;
|
|
562
|
-
ExpandElementExpr: ExpandElementExpr;
|
|
563
|
-
ExplicitRelation: ExplicitRelation;
|
|
564
|
-
ExtendElement: ExtendElement;
|
|
565
|
-
ExtendElementBody: ExtendElementBody;
|
|
566
|
-
FqnElementRef: FqnElementRef;
|
|
567
|
-
IconProperty: IconProperty;
|
|
568
|
-
ImplicitRelation: ImplicitRelation;
|
|
569
|
-
InOutExpr: InOutExpr;
|
|
570
|
-
IncludePredicate: IncludePredicate;
|
|
571
|
-
IncomingExpr: IncomingExpr;
|
|
572
|
-
LikeC4Grammar: LikeC4Grammar;
|
|
573
|
-
LikeC4View: LikeC4View;
|
|
574
|
-
LineProperty: LineProperty;
|
|
575
|
-
LinkProperty: LinkProperty;
|
|
576
|
-
Model: Model;
|
|
577
|
-
ModelViews: ModelViews;
|
|
578
|
-
NavigateToProperty: NavigateToProperty;
|
|
579
|
-
OpacityProperty: OpacityProperty;
|
|
580
|
-
OutgoingExpr: OutgoingExpr;
|
|
581
|
-
Relation: Relation;
|
|
582
|
-
RelationBody: RelationBody;
|
|
583
|
-
RelationExpr: RelationExpr;
|
|
584
|
-
RelationProperty: RelationProperty;
|
|
585
|
-
RelationStringProperty: RelationStringProperty;
|
|
586
|
-
RelationStyleProperty: RelationStyleProperty;
|
|
587
|
-
RelationshipKind: RelationshipKind;
|
|
588
|
-
RelationshipStyleProperty: RelationshipStyleProperty;
|
|
589
|
-
ShapeProperty: ShapeProperty;
|
|
590
|
-
SpecificationElementKind: SpecificationElementKind;
|
|
591
|
-
SpecificationRelationshipKind: SpecificationRelationshipKind;
|
|
592
|
-
SpecificationRule: SpecificationRule;
|
|
593
|
-
SpecificationTag: SpecificationTag;
|
|
594
|
-
StyleProperties: StyleProperties;
|
|
595
|
-
StyleProperty: StyleProperty;
|
|
596
|
-
Tag: Tag;
|
|
597
|
-
Tags: Tags;
|
|
598
|
-
ViewProperty: ViewProperty;
|
|
599
|
-
ViewRef: ViewRef;
|
|
600
|
-
ViewRule: ViewRule;
|
|
601
|
-
ViewRuleAutoLayout: ViewRuleAutoLayout;
|
|
602
|
-
ViewRulePredicate: ViewRulePredicate;
|
|
603
|
-
ViewRulePredicateExpr: ViewRulePredicateExpr;
|
|
604
|
-
ViewRuleStyle: ViewRuleStyle;
|
|
605
|
-
ViewStringProperty: ViewStringProperty;
|
|
606
|
-
WildcardExpr: WildcardExpr;
|
|
607
|
-
};
|
|
608
|
-
export declare class LikeC4AstReflection extends AbstractAstReflection {
|
|
609
|
-
getAllTypes(): string[];
|
|
610
|
-
protected computeIsSubtype(subtype: string, supertype: string): boolean;
|
|
611
|
-
getReferenceType(refInfo: ReferenceInfo): string;
|
|
612
|
-
getTypeMetaData(type: string): TypeMetaData;
|
|
613
|
-
}
|
|
614
|
-
export declare const reflection: LikeC4AstReflection;
|
|
615
|
-
//# sourceMappingURL=ast.d.ts.map
|